summaryrefslogtreecommitdiff
path: root/static/website/templates/abstract-details.html
diff options
context:
space:
mode:
authorPrashant S2018-08-23 17:40:00 +0530
committerGitHub2018-08-23 17:40:00 +0530
commitfd8043402a56fe47f47938b3874c93607616a20c (patch)
tree840a015b9bb62c4b7715212453f1235411f5efb1 /static/website/templates/abstract-details.html
parent5fc9c374d7139d8364519a9f28f07be645d62eeb (diff)
parent83e14c33bae4ef1ad5e8546408caf7232e962c75 (diff)
downloadSciPy2018-master.tar.gz
SciPy2018-master.tar.bz2
SciPy2018-master.zip
Merge pull request #10 from FOSSEE/developmentHEADmaster
added new html files and views.
Diffstat (limited to 'static/website/templates/abstract-details.html')
-rwxr-xr-xstatic/website/templates/abstract-details.html44
1 files changed, 44 insertions, 0 deletions
diff --git a/static/website/templates/abstract-details.html b/static/website/templates/abstract-details.html
new file mode 100755
index 0000000..07dcfc3
--- /dev/null
+++ b/static/website/templates/abstract-details.html
@@ -0,0 +1,44 @@
+{% extends "base.html" %}
+{% load static %}
+ {% block content %}
+ <section id="abstract_details" class="section abstract_details">
+ <div class="container">
+ <p>
+ <center>
+ <h2>Abstract Details</h2>
+ </center>
+ </p>
+ <h3><span class="label label-primary">{{ proposal.user.first_name }} {{ proposal.user.last_name }}</span></h3>
+ <hr>
+ <p><b>Title: </b>&nbsp;{{ proposal.title }}</p>
+ <p><b>About Me: </b>&nbsp;{{ proposal.about_me | linebreaks }}</p>
+ <p><b>Abstract: </b>&nbsp;{{ proposal.abstract |linebreaks }}</p>
+ {% if proposal.prerequisite %}
+ <p><b>Prerequisite: </b>&nbsp;{{ proposal.prerequisite |linebreaks }}</p>
+ {% endif%}
+ <p><b>Duration: </b>&nbsp;{{ proposal.duration }} {% if proposal.proposal_type == "ABSTRACT"%} Mins {% else %}Hours {%endif%}</p>
+ {% if proposal.proposal_type == "ABSTRACT"%}
+ <p><b>Tags: </b>&nbsp;{{ proposal.tags }}</p>
+ {% else %}
+ <p><b>Level: </b>&nbsp;{{ proposal.tags }}</p>
+ {% endif %}
+ <p><b>Date Created: </b>&nbsp;{{ proposal.date_created }}</p>
+ {% if url %}
+ <p><b>Attachment: </b>&nbsp;
+ <a href="{{ url }}" class="btn btn-info" target="_blank">{{filename}}</a>
+ </p>
+ {% endif %}
+ <p><b>Comments: </b>
+ <hr>
+ {% for comment in comments %}
+ <div>
+ <strong>Comment By:</strong>
+ {{ comment.user.first_name }} {{ comment.user.last_name }}
+ <p>{{ comment.comment| linebreaks }}</p>
+ </div>
+ <hr>
+ {% endfor %}
+ </div>
+ </section>
+ {% endblock %}
+