annotate app/views/groups/_form.html.erb @ 1628:9c5f8e24dadc live tip

Quieten this cron script
author Chris Cannam
date Tue, 25 Aug 2020 11:38:49 +0100
parents 261b3d9a4903
children
rev   line source
Chris@1115 1 <%= error_messages_for @group %>
Chris@0 2
Chris@0 3 <div class="box tabular">
Chris@1464 4 <p><%= f.text_field :name, :required => true, :size => 60 %></p>
Chris@909 5 <% @group.custom_field_values.each do |value| %>
Chris@909 6 <p><%= custom_field_tag_with_label :group, value %></p>
Chris@0 7 <% end %>
Chris@0 8 </div>