Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>Question</title>
- </head>
- <body>
- <h1></h1>
- <h2>{{question.author}}</h2>
- <form action="">
- <p>{{ question.question_text }}</p>
- {% for o in options %}
- <label for="question_{{question.id}}">{{o.option_text}}</label>
- <input type="radio" name="question_{{question.id}}" class="radio_button">
- {% endfor %}
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement