Files @ 7d18387670ca
Branch filter:

Location: symposion_app/pinaxcon/templates/symposion/proposals/proposal_leave.html

James Polley
If no boardingpass, make one

- Use the first template in the system
- If there's no template, use /tickets/review as it at least gives
- people an overview of what they've paid for and warns them of
missing categories
{% extends "symposion/proposals/base.html" %}

{% block page_title %}Leaving {{ proposal.title }}{% endblock %}
{% block head_title %}Leaving {{ proposal.title }}{% endblock %}

{% block body %}
    <form class="form-horizontal" method="POST" action="" enctype="multipart/form-data">
        {% csrf_token %}
        <p>Are you sure you wish to leave as a speaker on <b>{{ proposal.title }}</b>?</p>
        <input type="submit" class="btn btn-primary" value="I am sure" />
    </form>
{% endblock %}