root/templates/questionnaire/multiplechoice.html

Revision 1, 162 bytes (checked in by alex, 4 years ago)
  • initial djangoquest import
Line 
1<select name='question_{{question.id}}'>
2{% for choice in question.get_choices %}
3  <option value='{{choice.nr}}'>{{choice.name}}</option>
4{% endfor %}
5</select>
Note: See TracBrowser for help on using the browser.