blob: 5fc590d23edd6942d3fc6f0849c62890764d5b1d (
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
27
28
29
30
31
32
|
{% extends 'base.html' %}
{% block header%}
<h1> DWSIM Workshop 2015 </h1>
{% endblock %}
{% block content %}
<form action="{% url 'certificate:dwsim_feedback' %}" method="post" style="width:1000px">
<div style="padding-left:100px;width:940px;text-align:center;margin:0 auto;">
<div align=center style="padding-left:200px"> <h1> Feedback </h1>
<p>Your feedback will help us improve our services. Thank you for your time.</p>
</div>
{{ detail }}
{% csrf_token %}
<div style="padding-left:200px;text-align:left;" >
<table class="table">
{{ form }}
</table>
{% for question in questions %}
<label>{{ 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-primary" type="submit">Submit</button></span>
<span style="float:right"><a href="{% url 'certificate:dwsim_download' %}" >Skip feedback and download</a></span>
</div>
</div>
</form>
<hr>
{% endblock %}
|