Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {% extends 'game/base.html' %}
- {% load static %}
- {% block title %}{{ quiz.title }}{% endblock %}
- {% block content %}
- <style>
- .question {
- display: none;
- }
- </style>
- <h1>{{ current_quiz.quiz.title }}</h1>
- <div class="question-block">
- {% for question in question_queryset %}
- <div class="question" id='{{ question.pk }}'>
- {{ question }}
- <form action="" method="post" id="post-form">
- {% for answer in answers %}
- <input type="radio" id="{{ answer.pk }}" name="answer" value="{{ answer.answer_text }}">
- <label for="{{ answer.pk }}">{{ answer.answer_text }}</label><br>
- {% endfor %}
- <button type="submit" class='button'>Next question</button>
- {% csrf_token %}
- </form>
- </div>
- {% endfor %}
- </div>
- <script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
- integrity="sha256-pasqAKBDmFT4eHoN2ndd6lN370kFiGUFyTiUHWhU7k8=" crossorigin="anonymous"></script>
- <script src="{% static 'game/js.js' %}"></script>
- {% endblock %}
Add Comment
Please, Sign In to add comment