summaryrefslogtreecommitdiff
path: root/certificate/templates/arduino_feedback.html
diff options
context:
space:
mode:
authorprathamesh2015-07-03 11:02:16 +0530
committerprathamesh2015-07-03 11:02:16 +0530
commit48c1185dfe478d2a9ee2d5f2d1336d3010b35be9 (patch)
treebf192333b75fd2acd856f01c86fa42c08d59ee6c /certificate/templates/arduino_feedback.html
parentac23227f5455b6914e199b1ab66795aaa69444b6 (diff)
downloadcertificate-generator-48c1185dfe478d2a9ee2d5f2d1336d3010b35be9.tar.gz
certificate-generator-48c1185dfe478d2a9ee2d5f2d1336d3010b35be9.tar.bz2
certificate-generator-48c1185dfe478d2a9ee2d5f2d1336d3010b35be9.zip
Scilab arduino workshop certificates implementation
Diffstat (limited to 'certificate/templates/arduino_feedback.html')
-rw-r--r--certificate/templates/arduino_feedback.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/certificate/templates/arduino_feedback.html b/certificate/templates/arduino_feedback.html
new file mode 100644
index 0000000..d8a697c
--- /dev/null
+++ b/certificate/templates/arduino_feedback.html
@@ -0,0 +1,32 @@
+{% extends 'base.html' %}
+
+{% block header%}
+ <h1> Scilab Arduino Workshop 2015 </h1>
+{% endblock %}
+{% block content %}
+<form action="{% url 'certificate:arduino_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:arduino_download' %}" >Skip feedback and download</a></span>
+ </div>
+ </div>
+ </form>
+ <hr>
+{% endblock %}
+
+