blob: e3be32dce1d9fe4095021e49515421fbdbe2def3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% extends 'base.html' %}
{% block content %}
<form action="{% url 'certificate:feedback' %}" method="post" style="width:800px">
<p>Please fill in the feedback form. This will greatly enable us to do better.</p>
{{ detail }}
{% csrf_token %}
<div style="padding-left:100px;text-align:left;" >
<table class="table">
{{ form }}
</table>
{% for question in questions %}
<label>Q{{ forloop.counter }}. {{ question.question }} </label><br>
<textarea cols="80" class="form-control" id="{{ question.id }}" name="{{ question.id }}"></textarea><br>
{% endfor %}
<span><button class="btn btn-lg btn-primary" type="submit">Submit</button></span>
<span><a href="{% url 'certificate:download' %}" class="btn btn-lg btn-primary" >Skip</a></span>
</div>
</form>
<hr>
{% endblock %}
|