blob: 1c34df79c746dcb34edcd19ff5bd600b2629c4f2 (
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
|
{% extends 'base.html' %}
{% block header%}
<h1> Scilab India Conference 2014 </h1>
{% endblock %}
{% block content %}
<div style="width:50%; margin: 0 auto" >
<form action="{% url 'certificate: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:download' %}" >Skip feedback and download</a>
</form>
</div>
{% endblock %}
|