bornhack-website/src/program/templates/speakerproposal_detail.html

25 lines
851 B
HTML

{% extends 'program_base.html' %}
{% block program_content %}
{% if not camp.call_for_participation_open %}
<div class="alert alert-danger">
<strong>Note!</strong> This Call for Participation is not open.
</div>
{% endif %}
<h2>Details for {{ speakerproposal.name }}</h2>
{% include 'includes/speakerproposal_detail.html' %}
<p>
<a href="{% url 'program:proposal_list' camp_slug=camp.slug %}" class="btn btn-primary">Back to List</a>
{% if camp.call_for_participation_open and not camp.read_only %}
{% if not speakerproposal.eventproposals.all %}
<a href="{% url 'program:speakerproposal_delete' camp_slug=camp.slug pk=speakerproposal.uuid %}" class="btn btn-danger pull-right"><i class="fas fa-times"></i><span class="h5"> Delete Person</span></a>
{% endif %}
{% endif %}
</p>
{% endblock program_content %}