Sha256: 70ba839f8c3de27cd7e71d6af6290e07bf3c7e17f9469f0b4a27d5b35ba0e0cd

Contents?: true

Size: 435 Bytes

Versions: 7

Compression:

Stored size: 435 Bytes

Contents

<% @node.vclass.safe_columns.each do |col|
  next if %w{title text summary}.include?(col.name) -%>
  <label for='<%= col.name %>'><%= _(col.name) %></label>
  <% case col.ptype
     when :datetime %>
    <%= date_box(@node, col.name, :size=>15, :value => @node.prop[col.name]) %>
  <% else %>
    <%= text_area 'node', col.name, :cols => nil, :rows => 1, :value => @node.prop[col.name], :class => 'full_width' %>
  <% end %>
<% end -%>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
zena-1.2.1 app/views/versions/custom_tab.rhtml
zena-1.2.0 app/views/versions/custom_tab.rhtml
zena-1.1.3 app/views/versions/custom_tab.rhtml
zena-1.1.2 app/views/versions/custom_tab.rhtml
zena-1.1.1 app/views/versions/custom_tab.rhtml
zena-1.1.0 app/views/versions/custom_tab.rhtml
zena-1.0.0 app/views/versions/custom_tab.rhtml