blob: 13ad26fbc44d4e5f359295822976bc46765a62ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<%= simple_form_for(@gs_parameter) do |f| %>
<%= f.error_notification %>
<div class="inputs">
<%= f.input :name %>
<%= f.input :section %>
<%= f.input :value %>
<%= f.input :class_type %>
</div>
<div class="actions">
<%= f.button :submit %>
</div>
<% end %>
|