save progress. added user feedback view and stuff

This commit is contained in:
Thomas Hille
2017-04-11 15:00:35 +02:00
parent 341cd3a003
commit 73c3b902a3
7 changed files with 105 additions and 0 deletions

View File

@ -0,0 +1,8 @@
= form_for(@uef) do |f|
= render('shared/form_errors', object: @uef)
.form-group
= f.label(:feedback_text)
= f.text_field(:feedback_text, class: 'form-control', required: true)
= f.label(:difficulty)
= f.text_field(:difficulty, class: 'form-control', required: true)
.actions = render('shared/submit_button', f: f, object: @uef)