Files @ dde4c5bcdc6f
Branch filter:

Location: symposion_app/symposion_project/templates/proposals/proposal_cancel.html

Luke Hatcher
use new proposals base template
{% extends "proposals/base.html" %}

{% load bootstrap_tags %}

{% block head_title %}Cancel Proposal{% endblock %}

{% block body %}
    <h1>Cancel: {{ proposal.title }}</h1>
    
    <form method="POST" action="" enctype="multipart/form-data">
        {% csrf_token %}
        <p>Are you sure you want to cancel <b>{{ proposal.title }}</b>?</p>
        <input class="btn btn-danger" type="submit" value="I am sure" />
        <a class="btn" href="{% url proposal_detail proposal.pk %}">No, keep it for now</a>
    </form>
{% endblock %}