annotate app/views/enumerations/_form.html.erb @ 1298:4f746d8966dd redmine_2.3_integration

Merge from redmine-2.3 branch to create new branch redmine-2.3-integration
author Chris Cannam
date Fri, 14 Jun 2013 09:28:30 +0100
parents 433d4f72a19b
children
rev   line source
Chris@0 1 <%= error_messages_for 'enumeration' %>
Chris@0 2
Chris@1115 3 <div class="box tabular">
Chris@1115 4 <p><%= f.text_field :name %></p>
Chris@1115 5 <p><%= f.check_box :active %></p>
Chris@1115 6 <p><%= f.check_box :is_default %></p>
Chris@0 7
Chris@1115 8 <% @enumeration.custom_field_values.each do |value| %>
Chris@1115 9 <p><%= custom_field_tag_with_label :enumeration, value %></p>
Chris@1115 10 <% end %>
Chris@0 11 </div>