From 0b6cc60bb8d0fa6da336c20eccea4bad7c05c0ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=AD=C3=B0ir=20Valberg=20Gu=C3=B0mundsson?= Date: Sun, 10 Mar 2019 17:20:08 +0100 Subject: [PATCH] Add duration and notes to event proposal info. --- .../includes/eventproposal_detail.html | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/src/program/templates/includes/eventproposal_detail.html b/src/program/templates/includes/eventproposal_detail.html index 061bc5fa..9aeb715e 100644 --- a/src/program/templates/includes/eventproposal_detail.html +++ b/src/program/templates/includes/eventproposal_detail.html @@ -1,18 +1,34 @@ {% load commonmark %}
-
{{ eventproposal.title }}
+
+ Title: {{ eventproposal.title }}
+ ID: {{ eventproposal.uuid }}
+ Status: {{ eventproposal.proposal_status }}
+ Duration: {{ eventproposal.duration|default:"Not defined" }}
+
+
+ + +
+
Abstract
{{ eventproposal.abstract|untrustedcommonmark }} {% if camp.call_for_participation_open and not camp.read_only and request.resolver_match.app_name == "program" %} Modify {% endif %}
-
-
URLs for {{ eventproposal.title }}
+
Notes
+
+ {{ eventproposal.submission_notes|untrustedcommonmark }} +
+
+ +
+
URLs
{% if eventproposal.urls.exists %} {% include 'includes/eventproposalurl_table.html' %} @@ -26,7 +42,7 @@
-
{{ eventproposal.event_type.host_title }} List for {{ eventproposal.title }}
+
{{ eventproposal.event_type.host_title }} List
{% if eventproposal.speakers.exists %} {% include 'includes/speaker_proposal_table.html' with speakerproposals=eventproposal.speakers.all %}