Newer
Older
postorius / src / postorius / templates / postorius / confirm_dialog.html
@Florian Fuchs Florian Fuchs on 23 Mar 2012 368 bytes * added copy of the GPL
{% extends extend_template %}
{% load i18n %}

{% block main %}
    <h1>{% trans 'Confirm' %}</h1>
    <p>{% trans "Are you sure?" %}</p>
    <form action="{{submit_url}}" method="post">
        <button class="btn btn-danger" type="submit">{% trans "OK" %}</button>
        <a class="btn" href="{{cancel_url}}">{% trans "Cancel" %}</a>
    </form>
{% endblock main %}