From 17e8d8b6e6aff4eb6181e87be43d756e06e1fef6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Thu, 23 Aug 2018 10:19:34 +0530 Subject: added workshop form --- static/website/templates/submit-cfw.html | 102 +++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100755 static/website/templates/submit-cfw.html (limited to 'static') diff --git a/static/website/templates/submit-cfw.html b/static/website/templates/submit-cfw.html new file mode 100755 index 0000000..5cdef69 --- /dev/null +++ b/static/website/templates/submit-cfw.html @@ -0,0 +1,102 @@ +{% extends "base.html" %} +{% load static %} +{% load widget_tweaks %} +{% block content %} + +
+
+

+

+

Submit Workshop Proposal

+
+

+
+ {% if proposals_w >= 1 %} You have exceeded the workshop proposal submission limit. + You may view your submitted proposals by clicking + + here + {% else %} +

+ 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