Advertisement
Guest User

all.html

a guest
Apr 17th, 2014
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.54 KB | None | 0 0
  1. {% extends 'base.html' %}
  2.  
  3. {% block content %}
  4. <div class='row'>
  5.    
  6.     {% for question in questions %}    
  7.         {{ question }}<br/>
  8.         <form method='POST' action=''>{% csrf_token %}
  9.         <input type='hidden' vlaue='{{ question.id }}' name='question_id'/>
  10.             {% for ans in question.answer_set.all %}
  11.             <input type='radio' value='{{ ans }}' name='answer'>{{ ans }} <br/>
  12.             {% endfor %}
  13.             <input type='submit' value='Submit'>
  14.         </form>
  15.     {% endfor %}
  16.  
  17. </div>
  18.  
  19.  
  20.  
  21. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement