summaryrefslogtreecommitdiff
path: root/certificate/templates/esim_workshop_feedback.html
blob: 416d0e106c57353181aa4bb0a07dbee7103ea341 (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 header%}
    <h1> eSim Workshop 2016 </h1>
{% endblock %}
{% block content %}
    <div style="width:50%; margin: 0 auto" >
<form  action="{% url 'certificate:esim_workshop_feedback' %}" method="post">

    <h1> Feedback </h1>
    <p>Your feedback will help us improve our services. Thank you for your time.</p>

        {{ detail }}
        {% csrf_token %}
            <table class="table">
                {{ form }}
            </table>
                {% for question in questions %}
                <label style="float:left">{{ forloop.counter }}. {{ question.question }} </label><br>
                    <textarea cols="80" class="form-control" id="{{ question.id }}" name="{{ question.id }}"></textarea><br>
                    {% endfor %}
              <button style="float:left" class="btn btn-primary" type="submit">Submit</button>
                <a style="float:right" href="{% url 'certificate:esim_workshop_download' %}" >Skip feedback and download</a>
     </form>
    </div>
{% endblock %}