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 b94039e0 Serghei MIHAI
{% extends "corbo/manage.html" %}
2
{% load i18n %}
3
{% block content %}
4
<form method="post">
5 f38ae358 Frédéric Péters
  <p>
6 b94039e0 Serghei MIHAI
    {% blocktrans with title=object.title %}
7
    Are you sure you want to delete the announce "{{ title }}" ?
8
    {% endblocktrans %}
9 f38ae358 Frédéric Péters
  </p>
10 b94039e0 Serghei MIHAI
  {% csrf_token %}
11 f38ae358 Frédéric Péters
  <div class="buttons">
12
    <button>{% trans "Delete" %}</button>
13
    <a class="cancel" href="{{ object.get_absolute_url }}">{% trans 'Cancel' %}</a>
14
  </div>
15 b94039e0 Serghei MIHAI
</form>
16
{% endblock %}