{% extends "base.html" %} {% load static %} {% load widget_tweaks %} {% block content %}

{% if proposal.proposal_type == "PAPER"%}

Abstract Details

{% else %}

Workshop Details

{% endif %}

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

Title of the paper:  {{ proposal.title }}

Name of the author(s):  {{proposal.name_of_authors}}

About the Author(s):  {{ proposal.about_the_authors |linebreaks }}

Duration:  {{ proposal.duration }} {% if proposal.proposal_type == "PAPER"%} Mins {% else %}Hours {%endif%}

{% if proposal.proposal_type == "PAPER"%}

Tags:  {{ proposal.tags }}

{% else %}

Level:  {{ proposal.tags }}

{% endif %} {% if url %} Attachment:  {{ filename }} {% endif %}

Date Created:  {{ proposal.date_created }}

{% csrf_token %} Ratings : /10  

Ratings

{% for rate in rates %}
{{rate.rating}}/10 by - {{ rate.user }}
{% endfor %}

Comments

{% for comment in comments %}
Comment By: {{ comment.user.first_name }} {{ comment.user.last_name }}

{{ comment.comment| linebreaks }}


{% endfor %}
{% csrf_token %}
{% endblock %}