From 756d9e437cc0e573558046d7ad2b1e629487865d Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Thu, 23 Aug 2018 16:59:35 +0530 Subject: added new html files --- static/website/templates/edit-proposal.html | 35 +++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 static/website/templates/edit-proposal.html (limited to 'static/website/templates/edit-proposal.html') diff --git a/static/website/templates/edit-proposal.html b/static/website/templates/edit-proposal.html new file mode 100755 index 0000000..fdcc39b --- /dev/null +++ b/static/website/templates/edit-proposal.html @@ -0,0 +1,35 @@ +{% extends "base.html" %} +{% load static %} +{% load widget_tweaks %} +{% block content %} + +
+
+

+

+ {% if proposal.proposal_type == "ABSTRACT" %} +

Edit Abstract Proposal

+ {% else %} +

Edit Workshop Proposal

+ {% endif %} +
+

+

{{ proposal.user.first_name }} {{ proposal.user.last_name }}

+
+ {% csrf_token %} +
+ {% for field in form %} +

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

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