49 lines
1.6 KiB
HTML
49 lines
1.6 KiB
HTML
{% extends "base.html" %}
|
|
{% load filters %}
|
|
{% load rest_framework %}
|
|
|
|
|
|
{% block title %}{{ request.GET.name }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="newContainer">
|
|
<form method="post">
|
|
<h1>Add questions</h1>
|
|
{% for i in request.GET.number_of_questions|times %}
|
|
<h2>Question {{forloop.counter}}</h2>
|
|
<label for="desc">Description: </label>
|
|
<input id="desc" type="text" name="desc">
|
|
<br>
|
|
<br>
|
|
<label for="ans1">Answer 1: </label>
|
|
<input id="ans1" type="text" name="ans1">
|
|
<br>
|
|
<br>
|
|
<label for="ans2">Answer 2: </label>
|
|
<input id="ans2" type="text" name="ans2">
|
|
<br>
|
|
<br>
|
|
<label for="ans3">Answer 3: </label>
|
|
<input id="ans3" type="text" name="ans3">
|
|
<br>
|
|
<br>
|
|
<label for="ans4">Answer 4: </label>
|
|
<input id="ans4" type="text" name="ans4">
|
|
<br>
|
|
<br>
|
|
<label for="category">Correct: </label>
|
|
<select name="category" id="category">
|
|
<option value="1">1</option>
|
|
<option value="2">2</option>
|
|
<option value="3">3</option>
|
|
<option value="4">4</option>
|
|
</select>
|
|
<br>
|
|
<br>
|
|
{% endfor %}
|
|
<input type="submit" value="Create test">
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|
|
|