From a5f9221b03bdc8fa1152b161db5c60dc4f6cc896 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Thu, 23 Aug 2018 10:20:11 +0530 Subject: added cfp form --- static/website/templates/submit-cfp.html | 115 +++++++++++++++++++++++-------- 1 file changed, 85 insertions(+), 30 deletions(-) (limited to 'static/website') diff --git a/static/website/templates/submit-cfp.html b/static/website/templates/submit-cfp.html index b3aa2ee..5354f4e 100755 --- a/static/website/templates/submit-cfp.html +++ b/static/website/templates/submit-cfp.html @@ -1,41 +1,96 @@ {% extends "base.html" %} + +{% load widget_tweaks %} {% load static %} + +
{% block content %} +
- {% if proposals_a >= 1 %} You have exceeded the abstract submission limit. You may view your submitted proposals by clicking here + {% 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 %} + {% else %} +
- - Back +

Submit Proposal

-
+
+

+ Proposal Guidelines +

+ +
+
+ + {% render_field proposal_form.about_me %} +
+
+ + {% render_field proposal_form.phone %} +
+
+ + {% render_field proposal_form.title %} +
+
+ + {% render_field proposal_form.abstract %} + +
+
+ + {% render_field proposal_form.duration %} + +
+
+ + {% render_field proposal_form.attachment %} +
+
+ + {% render_field proposal_form.tags %} +
+
+
+ + {% render_field proposal_form.open_to_share %} +
+
+ {% render_field proposal_form.proposal_type %} + {% csrf_token %} +
+ + Back +
+
{% endif %} -
-
+ + {% endblock %} -- cgit