47 lines
1.5 KiB
HTML
47 lines
1.5 KiB
HTML
{% extends "base.html" %}
|
|
{% load rest_framework %}
|
|
|
|
{% block title %}New Test{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="newContainer">
|
|
<form method="post">
|
|
<h1>Add questions</h1>
|
|
{% for i in 1|range:4 %}
|
|
<h2>Question {{i}}</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">Category: </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="Add questions">
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|
|
|