Advertisement
ZEdKasat

Untitled

Nov 30th, 2021
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Question</title>
  5. </head>
  6. <body>
  7. <h1></h1>
  8. <h2>{{question.author}}</h2>
  9.  
  10.  
  11.  
  12. <form action="">
  13. <p>{{ question.question_text }}</p>
  14.  
  15. {% for o in options %}
  16. <label for="question_{{question.id}}">{{o.option_text}}</label>
  17. <input type="radio" name="question_{{question.id}}" class="radio_button">
  18. {% endfor %}
  19.  
  20. </form>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement