From 7ca4731d9e23c16c7669f9498fb7320119a52a81 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Thu, 20 Nov 2014 19:46:28 +0530 Subject: added interface to view received abstracts --- static/website/templates/view-abstracts.html | 52 ++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 static/website/templates/view-abstracts.html (limited to 'static/website/templates/view-abstracts.html') diff --git a/static/website/templates/view-abstracts.html b/static/website/templates/view-abstracts.html new file mode 100644 index 0000000..a988f0a --- /dev/null +++ b/static/website/templates/view-abstracts.html @@ -0,0 +1,52 @@ +{% extends 'website/templates/base.html' %} + +{% load widget_tweaks %} + +{% block current %} +View Abstracts +{% endblock %} + + +{% block content %} + {% for proposal in proposals %} +

Title:  {{ proposal.title }}

+

Speaker:  {{ proposal.user.first_name }} {{ proposal.user.last_name }}

+

Bio:  {{ proposal.bio }}

+

Objective:  {{ proposal.objective }}

+ + + + + + +
+ + + Attachment +
+
+ {% if proposal.link %} +

Additional Links:  {{ proposal.link }}

+ {% endif %} + +
+ {% endfor %} +{% endblock %} + -- cgit