To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / enumerations / _form.html.erb @ 1531:ae8145b28b2b

History | View | Annotate | Download (321 Bytes)

1
<%= error_messages_for 'enumeration' %>
2

    
3
<div class="box tabular">
4
  <p><%= f.text_field :name %></p>
5
  <p><%= f.check_box :active %></p>
6
  <p><%= f.check_box :is_default %></p>
7

    
8
  <% @enumeration.custom_field_values.each do |value| %>
9
    <p><%= custom_field_tag_with_label :enumeration, value %></p>
10
  <% end %>
11
</div>