diff options
Diffstat (limited to 'static/website/templates/comment-abstract.html')
-rwxr-xr-x | static/website/templates/comment-abstract.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/static/website/templates/comment-abstract.html b/static/website/templates/comment-abstract.html index f77eb3f..2695ba3 100755 --- a/static/website/templates/comment-abstract.html +++ b/static/website/templates/comment-abstract.html @@ -7,7 +7,7 @@ <div class="container"> <p> <center> - {% if proposal.proposal_type == "ABSTRACT"%} + {% if proposal.proposal_type == "PAPER"%} <h2>Abstract Details</h2> {% else %} <h2>Workshop Details</h2> @@ -18,18 +18,18 @@ <p><b>Title of the paper: </b> {{ proposal.title }}</p> <p><b>Name of the author(s):</b> {{proposal.name_of_authors}}</p> <p align="justify"><b>About the Author(s): </b> {{ proposal.about_the_authors |linebreaks }}</p> - <!--{% if proposal.proposal_type == "ABSTRACT"%} - <p align="justify"><b>Abstract:</b> + <!--{% if proposal.proposal_type == "PAPER"%} + <p align="justify"><b>Paper:</b> {% else %} <p align="justify"><b>Description:</b> {% endif %} - {{ proposal.abstract | linebreaks }} + {{ proposal.paper | linebreaks }} </p> {% if proposal.prerequisite %} <p align="justify"><b>Prerequisite: </b> {{ proposal.prerequisite| linebreaks }}</p> {% endif%} --> - <p><b>Duration: </b> {{ proposal.duration }} {% if proposal.proposal_type == "ABSTRACT"%} Mins {% else %}Hours {%endif%}</p> - {% if proposal.proposal_type == "ABSTRACT"%} + <p><b>Duration: </b> {{ proposal.duration }} {% if proposal.proposal_type == "PAPER"%} Mins {% else %}Hours {%endif%}</p> + {% if proposal.proposal_type == "PAPER"%} <p><b>Tags: </b> {{ proposal.tags }}</p> {% else %} <p><b>Level: </b> {{ proposal.tags }}</p> |