{% extends 'website/templates/base.html' %} {% load widget_tweaks %} {% block current %} Proposal Details {% endblock %} {% block content %} Logout

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 %}

Comments


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

{{ comment.comment|safe }}


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