root/templates/questionnaire/multiplechoice-multipleanswers.html

Revision 1, 235 bytes (checked in by alex, 4 years ago)
  • initial djangoquest import
Line 
1<table border='0'>
2<tr>
3{% for choice in question.get_choices %}
4<td>
5<input name='question_multiple_{{choice.nr}}_{{question.id}}' type='checkbox'
6value='{{choice.nr}}'><label>{{choice.name}}</label>
7</td>
8{% endfor %}
9</tr>
10</table>
Note: See TracBrowser for help on using the browser.