<%= form_for(@ground_picture) do |f| %> <%= render 'system/error_explanation', :obj => @ground_picture %>
<%= f.label :caption %>
<%= f.text_field :caption %>
<%= f.label :repeat %>
<%= f.collection_select :repeat, t_select_items(MagicNumber['ground_picture_repeat_items']), :last, :first, :html => {:selected => @ground_picture.repeat} %>
<%= f.label :x %>
<%= f.number_field :x %>
<%= f.label :y %>
<%= f.number_field :y %>
<%= f.label :z %>
<%= f.number_field :z %>
<%= f.label :t %>
<%= f.number_field :t %>
<%= f.hidden_field :panel_id %> <%= f.hidden_field :picture_id %>
<%= f.submit %>
<% end %>