summaryrefslogtreecommitdiff
path: root/certificate/templates/feedback.html
blob: c5a40ac226c758edea4bbddda7ad3218b4d826ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{% extends 'base.html' %}

{% block content %}
    <form  action="{% url 'certificate:feedback' %}" method="post">
    <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;" >
            <div>
            <table class="table">
                {{ form }}
            </table>
                {% for question in questions %}
                <tr>
                <label>Q{{ forloop.counter }}. {{ question.question }} <br>
                    <textarea class="form-control" cols="80" id="{{ question.id }}" name="{{ question.id }}"></textarea><br>
                </tr>
                    {% endfor %}
            </table>
              <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>
    </form>
    <hr>
{% endblock %}