avaaren

хтмл)

Mar 15th, 2020
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.00 KB | None | 0 0
  1. {% extends 'game/base.html' %}
  2. {% load static %}
  3.  
  4. {% block title %}{{ quiz.title }}{% endblock %}
  5.  
  6. {% block content %}
  7. <style>
  8.   .question {
  9.     display: none;
  10.   }
  11. </style>
  12.  
  13. <h1>{{ current_quiz.quiz.title }}</h1>
  14. <div class="question-block">
  15.   {% for question in question_queryset %}
  16.   <div class="question" id='{{ question.pk }}'>
  17.     {{ question }}
  18.  
  19.     <form action="" method="post" id="post-form">
  20.       {% for answer in answers %}
  21.       <input type="radio" id="{{ answer.pk }}" name="answer" value="{{ answer.answer_text }}">
  22.       <label for="{{ answer.pk }}">{{ answer.answer_text }}</label><br>
  23.       {% endfor %}
  24.       <button type="submit" class='button'>Next question</button>
  25.       {% csrf_token %}
  26.     </form>
  27.    
  28.   </div>
  29.   {% endfor %}
  30. </div>
  31.  
  32.  
  33. <script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
  34.  integrity="sha256-pasqAKBDmFT4eHoN2ndd6lN370kFiGUFyTiUHWhU7k8=" crossorigin="anonymous"></script>
  35. <script src="{% static 'game/js.js' %}"></script>
  36. {% endblock %}
Add Comment
Please, Sign In to add comment