bornhack-website/src/program/templates/event_proposal_add_person.html
Thomas Flummer 1c88ed8073
Added title blocks to templates that did not have one (#511)
In most cases this mirrors the primary header on the page, but in some cases the title is simplified and/or nested to reflect the depth of the current page

Co-authored-by: Thomas Steen Rasmussen <tykling@bornhack.org>
2020-06-03 21:30:10 +02:00

23 lines
1 KiB
HTML

{% extends 'program_base.html' %}
{% load bootstrap3 %}
{% block title %}
Add {{ eventproposal.event_type.host_title }} {{ speakerproposal.name }} to {{ eventproposal.title }} | {{ block.super }}
{% endblock %}
{% block program_content %}
<div class="panel panel-default">
<div class="panel-heading"><span class="h3">Add {{ event_proposal.event_type.host_title }} {{ speaker_proposal.name }} to <i>{{ event_proposal.title }}</i>?</span></div>
<div class="panel-body">
<p class="lead">Really add <b>{{ speaker_proposal.name }}</b> as {{ event_proposal.event_type.host_title }} for <b>{{ event_proposal.title }}</b>?
<form method="POST">
{% csrf_token %}
{% bootstrap_form form %}
{% bootstrap_button "<i class='fas fa-check'></i> Yes" button_type="submit" button_class="btn-success" %}
<a href="{% url 'program:event_proposal_detail' camp_slug=camp.slug pk=event_proposal.uuid %}" class="btn btn-primary"><i class="fas fa-undo"></i> Cancel</a>
</form>
</div>
</div>
{% endblock program_content %}