Projet

Général

Profil

Télécharger (439 octets) Statistiques
| Branche: | Tag: | Révision:

root / corbo / templates / corbo / announce_confirm_delete.html @ f38ae358

1
{% extends "corbo/manage.html" %}
2
{% load i18n %}
3
{% block content %}
4
<form method="post">
5
  <p>
6
    {% blocktrans with title=object.title %}
7
    Are you sure you want to delete the announce "{{ title }}" ?
8
    {% endblocktrans %}
9
  </p>
10
  {% csrf_token %}
11
  <div class="buttons">
12
    <button>{% trans "Delete" %}</button>
13
    <a class="cancel" href="{{ object.get_absolute_url }}">{% trans 'Cancel' %}</a>
14
  </div>
15
</form>
16
{% endblock %}
(1-1/7)