summaryrefslogtreecommitdiffstats
path: root/app/views/groups/_form.html.erb
blob: 9d5b087e1d1c2f0cd6e735235297242b1b85832c (plain)
1
2
3
4
5
6
7
8
9
10
<%= error_messages_for @group %>

<div class="box tabular">
  <p><%= f.text_field :name, :required => true, :size => 60,
           :disabled => !@group.safe_attribute?('name')  %></p>

  <% @group.custom_field_values.each do |value| %>
    <p><%= custom_field_tag_with_label :group, value %></p>
  <% end %>
</div>