summaryrefslogtreecommitdiff
path: root/app/views/gs_parameters/_form.html.erb
blob: e559bcc72f560ad5e0ab6606fd52360ed7e6768b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<%= simple_form_for(@gs_parameter) do |f| %>
  <%= f.error_notification %>

  <div class="inputs">
    <%= f.input :name, :autofocus => true %>
    <%= f.input :section %>
    <%= f.input :value %>
    <%= f.input :class_type %>
    
  </div>

  <div class="actions">
    <%= f.button :submit %>
  </div>
<% end %>