10 lines
364 B
Text
10 lines
364 B
Text
|
|
<%= bootstrap_form_with(model: success_criterion) do |form| %>
|
||
|
|
<%= form.text_field :element_id %>
|
||
|
|
<%= form.text_field :title %>
|
||
|
|
<%= form.text_area :description %>
|
||
|
|
<%= form.number_field :level %>
|
||
|
|
<%= form.number_field :result %>
|
||
|
|
<%= form.text_area :comment %>
|
||
|
|
<%= form.submit %>
|
||
|
|
<% end %>
|