Sha256: 6c841403468ec077155aaba5ac1821cfa0c881f273ee3ea8867efba7ea66ebb5

Contents?: true

Size: 1.11 KB

Versions: 13

Compression:

Stored size: 1.11 KB

Contents

<label for="v_title"><%= _("title")  %></label>
<%= text_field 'node', 'v_title', :size=>nil, :class => 'full_width' %>

<% @node.dyn_attribute_keys.each do |k| -%>
<label for="d_<%= k %>"><%= _(k) %></label>
<%= text_area 'node', "d_#{k}", :cols=>nil, :rows=>2, :class => 'full_width' %>
<% end -%>

<label for='tag_list'><%= _("tags") %></label>
<%= text_field 'node', 'tag_list', :size=>nil, :class => 'full_width' %>

<label for='v_lang'><%= _("language") %></label>
<%= select 'node', 'v_lang', current_site.lang_list.map {|l| [_(l), l]} %>

<% if @node.kind_of?(Note) -%>
<label for='log_at'><%= _("log date") %></label>
<%= date_box('node', 'log_at')%>
<label for='event_at'><%= _("event date") %></label>
<%= date_box('node', 'event_at')%>
<% end -%>
<label><%= _('publication date') %></label>
<%= date_box('node', 'v_publish_from') %>
<label for="v_summary"><%= _("summary")  %></label>
<%= text_area 'node', 'v_summary', :cols=>nil, :rows=>6, :value=>@node.v_summary, :class => 'full_width' %>

<label for="v_comment"><%= _("comment") %></label>
<%= text_area 'node', 'v_comment', :cols=>nil, :rows=>2, :class => 'full_width' %>

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
zena-0.16.9 app/views/templates/edit_tabs/_title.rhtml
zena-0.16.8 app/views/templates/edit_tabs/_title.rhtml
zena-0.16.7 app/views/templates/edit_tabs/_title.rhtml
zena-0.16.6 app/views/templates/edit_tabs/_title.rhtml
zena-0.16.5 app/views/templates/edit_tabs/_title.rhtml
zena-0.16.4 app/views/templates/edit_tabs/_title.rhtml
zena-0.16.3 app/views/templates/edit_tabs/_title.rhtml
zena-0.16.2 app/views/templates/edit_tabs/_title.rhtml
zena-0.16.1 app/views/templates/edit_tabs/_title.rhtml
zena-0.16.0 app/views/templates/edit_tabs/_title.rhtml
zena-0.15.2 app/views/templates/edit_tabs/_title.rhtml
zena-0.15.1 app/views/templates/edit_tabs/_title.rhtml
zena-0.15.0 app/views/templates/edit_tabs/_title.rhtml