Sha256: 444f8ddcf19dab358885680324c607367cf8521ab0677325ceb17d38a0b36dc4
Contents?: true
Size: 1.21 KB
Versions: 6
Compression:
Stored size: 1.21 KB
Contents
<%= simple_nested_form_for(@user_group) do |f| %> <%= f.error_notification -%> <div class="field"> <%= f.label :name %><br /> <%= f.text_field :name %> </div> <div class="field"> <%= f.label :display_name %><br /> <%= f.text_area :display_name %> </div> <div class="field"> <%= f.label :valid_period_for_new_user %><br /> <%= f.text_field :valid_period_for_new_user, :class => 'resource_integer' %> </div> <div class="field"> <%= f.label :number_of_day_to_notify_due_date %><br /> <%= f.text_field :number_of_day_to_notify_due_date, :class => 'resource_integer' %> </div> <div class="field"> <%= f.label :number_of_day_to_notify_overdue %><br /> <%= f.text_field :number_of_day_to_notify_overdue, :class => 'resource_integer' %> </div> <div class="field"> <%= f.label :number_of_time_to_notify_overdue %><br /> <%= f.text_field :number_of_time_to_notify_overdue, :class => 'resource_integer' %> </div> <% if defined?(EnjuCirculation) %> <%= render 'user_groups/checkout_form', :f => f %> <% end %> <div class="field"> <%= f.label :note %><br /> <%= f.text_area :note %> </div> <div class="actions"> <%= f.submit %> </div> <% end %>
Version data entries
6 entries across 6 versions & 1 rubygems