From aa955c22ae18d55667006acd222dbc79e39a8b25 Mon Sep 17 00:00:00 2001 From: Sashi20 Date: Tue, 21 Aug 2018 16:31:05 +0530 Subject: Initial commit --- static/website/templates/submit-cfp.html | 41 ++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100755 static/website/templates/submit-cfp.html (limited to 'static/website/templates/submit-cfp.html') diff --git a/static/website/templates/submit-cfp.html b/static/website/templates/submit-cfp.html new file mode 100755 index 0000000..b3aa2ee --- /dev/null +++ b/static/website/templates/submit-cfp.html @@ -0,0 +1,41 @@ +{% extends "base.html" %} +{% load static %} +
+{% block content %} +
+
+ {% if proposals_a >= 1 %} You have exceeded the abstract submission limit. You may view your submitted proposals by clicking here + + {% else %}
+
+

Submit Proposal

+
+
+

Proposal Guidelines

+ +
+ +
+ {% for field in proposal_form %} +

{{ field.label}} {% if field.field.required %} * {% endif %} {{ field }} +

+ {{ field.errors }} {% endfor %} +
+ {% csrf_token %} +
+ + Back +
+
+ {% endif %} +
+
+{% endblock %} -- cgit