summaryrefslogtreecommitdiff
path: root/tbc/templates
diff options
context:
space:
mode:
authorhardythe12014-05-19 18:19:50 +0530
committerhardythe12014-05-19 18:19:50 +0530
commita1eaab29db7b75ebaf16728be72070fff176deb4 (patch)
tree99905260b0112523bba05d4e8c0639c82c1be7bb /tbc/templates
parent84a0ef75894b0a5826e945d5cb68cdad713eadfa (diff)
downloadPython-TBC-Interface-a1eaab29db7b75ebaf16728be72070fff176deb4.tar.gz
Python-TBC-Interface-a1eaab29db7b75ebaf16728be72070fff176deb4.tar.bz2
Python-TBC-Interface-a1eaab29db7b75ebaf16728be72070fff176deb4.zip
page to submit a proposal
Diffstat (limited to 'tbc/templates')
-rw-r--r--tbc/templates/tbc/submit-proposal.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/tbc/templates/tbc/submit-proposal.html b/tbc/templates/tbc/submit-proposal.html
new file mode 100644
index 0000000..1f091bb
--- /dev/null
+++ b/tbc/templates/tbc/submit-proposal.html
@@ -0,0 +1,14 @@
+{% extends 'base.html' %}
+{% block content %}
+<div id="content-wrap" style="max-width:600px;">
+ <form action="/submit-proposal/" method=POST enctype="multipart/form-data">
+ {% csrf_token %}
+ {% for form in book_forms %}
+ <h4>Book Preference {{ forloop.counter }}</h4>
+ {{ form.as_p }}
+ {% endfor %}
+ <hr>
+ <input class="btn btn-primary" type=submit value=submit>
+ </form>
+</div>
+{% endblock %}