summaryrefslogtreecommitdiff
path: root/certificate/templates/feedback.html
diff options
context:
space:
mode:
authorprathamesh2014-12-06 17:38:34 +0530
committerprathamesh2014-12-06 17:38:34 +0530
commit234711a3724c8ad27422bbc76998e41b50265521 (patch)
treef8093165dc91e7087ae0da34d0ff0964cb649474 /certificate/templates/feedback.html
parent1035cb5d0230566501ea2b974611f9c5867325e9 (diff)
downloadcertificate-generator-234711a3724c8ad27422bbc76998e41b50265521.tar.gz
certificate-generator-234711a3724c8ad27422bbc76998e41b50265521.tar.bz2
certificate-generator-234711a3724c8ad27422bbc76998e41b50265521.zip
minor UI changes
Diffstat (limited to 'certificate/templates/feedback.html')
-rw-r--r--certificate/templates/feedback.html13
1 files changed, 5 insertions, 8 deletions
diff --git a/certificate/templates/feedback.html b/certificate/templates/feedback.html
index c5a40ac..e3be32d 100644
--- a/certificate/templates/feedback.html
+++ b/certificate/templates/feedback.html
@@ -1,25 +1,22 @@
{% extends 'base.html' %}
{% block content %}
- <form action="{% url 'certificate:feedback' %}" method="post">
+ <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;" >
- <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>
+ <label>Q{{ forloop.counter }}. {{ question.question }} </label><br>
+ <textarea cols="80" class="form-control" id="{{ question.id }}" name="{{ question.id }}"></textarea><br>
{% 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>
+ </div>
+ </form>
<hr>
{% endblock %}