OSDN Git Service

t#31896:refact elm
[pettanr/pettanr.git] / app / views / ground_colors / _form.html.erb
1 <%= form_for(elm) do |f| %>
2   <%= render 'system/error_explanation', :obj => elm %>
3
4   <div class="field">
5     <%= f.label :caption %>
6     <%= f.text_field :caption, elm.field_tag_attributes(:caption, no_attr) %>
7   </div>
8   <div class="field">
9     <%= f.label :code %>
10     <%= f.text_field :code, elm.field_tag_attributes(:code, no_attr, :size => 8) %>
11     <% if elm.has_helper?(:code) %>
12       <%= render elm.form_helper_template(:code), :elm => elm, :no_attr => no_attr %>
13     <% end %>
14   </div>
15   <div class="field">
16     <%= f.label :z %>
17     <%= f.number_field :z, elm.field_tag_attributes(:z, no_attr, :size => 5) %>
18
19     <%= f.label :t %>
20     <%= f.number_field :t, elm.field_tag_attributes(:t, no_attr, :size => 5) %>
21   </div>
22
23   <%= f.hidden_field :panel_id, elm.field_tag_attributes(:panel_id, no_attr) %>
24   <% unless elm.new_record?  %>
25     <%= f.hidden_field :id, elm.field_tag_attributes(:id, no_attr) %>
26   <% end %>
27
28   <div class="actions">
29     <%= f.submit t('ground_colors.submit'), :class => "submit" %>
30   </div>
31   <% if no_attr > 0 %>
32     <div class="submit-new-form" panel_id="<%= elm.tag_panel_id -%>" element_type="<%= elm.tag_element_type -%>"></div>
33   <% end %>
34 <% end %>