diff options
author | Joachim Filip Ignacy Bartosik <jbartosik@gmail.com> | 2010-07-27 17:34:47 +0200 |
---|---|---|
committer | Petteri Räty <petsku@petteriraty.eu> | 2010-07-27 23:35:45 +0300 |
commit | 97b8d09ebcbb560cd6ba36f038b059d908d7ebec (patch) | |
tree | 5fb3abf7bdf78fd114919ce8fedb0e68224dd375 /app/views | |
parent | Validate that mentors have been Gentoo developers long enough (diff) | |
download | recruiting-webapp-97b8d09ebcbb560cd6ba36f038b059d908d7ebec.tar.gz recruiting-webapp-97b8d09ebcbb560cd6ba36f038b059d908d7ebec.tar.bz2 recruiting-webapp-97b8d09ebcbb560cd6ba36f038b059d908d7ebec.zip |
Allow recruits to give feedback on documentation + tiny bug fix
A tiny bug (missing try) was discovered when making this commit:
multiple choice question with no options could not be displayed. This
commit fixes the bug.
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/taglibs/forms.dryml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/taglibs/forms.dryml b/app/views/taglibs/forms.dryml index f1370f5..9f93b8a 100644 --- a/app/views/taglibs/forms.dryml +++ b/app/views/taglibs/forms.dryml @@ -2,7 +2,7 @@ <form merge param="default"> <error-messages param/> <input:question type="hidden"/> - <field-list fields="content, reference, approved"> + <field-list fields="content, reference, approved, feedback"> <content-label:>Your Answer:</content-label:> </field-list> <div param="actions"> @@ -31,7 +31,7 @@ <input:question type="hidden"/> <input:owner type="hidden"/> <input:options/> - <field-list fields="reference, approved"/> + <field-list fields="reference, approved, feedback"/> </table> <div param="actions"> <submit label="#{ht 'answers.actions.save', :default=>['Save']}" param/><or-cancel param="cancel"/> |