OSDN Git Service

t#:
[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="row_break">
9   </div>
10   <div class="field">
11     <%= f.label :code %>
12     <%= f.text_field :code, elm.field_tag_attributes(:code, no_attr, :size => 8) %>
13     <% if elm.has_helper?(:code) %>
14       <div class="ground_color-code-wrap">
15         <%= render elm.form_helper_template(:code), :elm => elm, :no_attr => no_attr %>
16       </div>
17    <% end %>
18   </div>
19   <div class="row_break">
20   </div>
21   <div class="field">
22     <%= f.label :z %>
23     <%= f.number_field :z, elm.field_tag_attributes(:z, no_attr, :size => 5) %>
24   </div>
25   <div class="row_break">
26   </div>
27   <div class="field">
28     <%= f.label :t %>
29     <%= f.number_field :t, elm.field_tag_attributes(:t, no_attr, :size => 5) %>
30   </div>
31
32   <%= f.hidden_field :panel_id, elm.field_tag_attributes(:panel_id, no_attr) %>
33   <% unless elm.new_record?  %>
34     <%= f.hidden_field :id, elm.field_tag_attributes(:id, no_attr) %>
35   <% end %>
36
37   <div class="actions">
38     <%= f.submit t('ground_colors.submit'), :class => "submit" %>
39   </div>
40   <% if no_attr > 0 %>
41     <div class="submit-new-form" panel_id="<%= elm.tag_panel_id -%>" element_type="<%= elm.tag_element_type -%>"></div>
42   <% end %>
43 <% end %>