Sha256: 334327ed02b40d51cda6f8ab28d739b9723837a0e9df267d1ef31e605388fc6e

Contents?: true

Size: 446 Bytes

Versions: 7

Compression:

Stored size: 446 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, "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.8 app/views/versions/custom_tab.rhtml
zena-1.2.7 app/views/versions/custom_tab.rhtml
zena-1.2.6 app/views/versions/custom_tab.rhtml
zena-1.2.5 app/views/versions/custom_tab.rhtml
zena-1.2.4 app/views/versions/custom_tab.rhtml
zena-1.2.3 app/views/versions/custom_tab.rhtml
zena-1.2.2 app/views/versions/custom_tab.rhtml