ensl.org/app/views/polls/_option.html.erb
2014-04-27 02:35:13 +01:00

15 lines
No EOL
403 B
Text

<div class="fields horizontal">
<%= f.label :option, "Question" %>
<div class="inputs">
<div class="question">
<%= f.hidden_field :poll_id %>
<%= f.text_field :option %>
</div>
<div class="destroy">
<%= f.check_box :_destroy %>
<%= f.label :_destroy, class: 'checkbox' %>
<%= f.label :_destroy, "Remove", class: 'remove' %>
</div>
</div>
</div>