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

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

Abstract Details

{% else %}

Workshop Details

{% endif %}

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

Title:  {{ proposal.title }}

Name of the author: {{proposal.name_of_author1}} {% if proposal.name_of_author2 %},{{proposal.name_of_author2}} {% endif %}

About the authors:  {{ proposal.about_the_authors |linebreaks }}

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

Abstract:  {% else %}

Description:  {% endif %} {{ proposal.abstract | linebreaks }}

{% if proposal.prerequisite %}

Prerequisite:  {{ proposal.prerequisite| linebreaks }}

{% endif%}

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

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

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 %}
Back
{% endblock %}