Files @ a00fc7845e3c
Branch filter:

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

Nick Seidenman (N6)
Added some css to make text visible on 404 and 404 pages.
Removed references to non-existent content—page-header-panel.html.
{% extends "symposion/proposals/base.html" %}

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

{% block body %}
    <form 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 %}