skill-assessment-app/app/views/admin/quiz/_form.html.erb

20 lines
483 B
Plaintext
Raw Permalink Normal View History

2016-08-19 16:42:06 -05:00
<%= render partial: 'shared/form_model_errors', locals: { obj: quiz} %>
2016-08-18 18:22:57 -05:00
<%= form_for quiz, url: action do |form| %>
<div class="form-group">
<%= form.label :name, "Quiz Description" %>
<%= form.text_field :name %>
</div>
<div class="form-group">
<%= form.label :dept, 'Department' %>
<%= form.text_field :dept %>
</div>
<div class="form-group">
<%= form.label :unit, 'Unit' %>
<%= form.text_field :unit %>
</div>
2016-08-18 15:35:17 -05:00
2016-08-18 18:22:57 -05:00
<%= form.submit %>
2016-08-18 15:35:17 -05:00
<% end %>