Projet

Général

Profil

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

root / corbo / templates / corbo / category_confirm_delete.html @ bc5c3246

1
{% extends "corbo/manage.html" %}
2
{% load i18n %}
3
{% block appbar %}
4
{% endblock %}
5
{% block content %}
6
<form method="post">
7
  {% csrf_token %}
8
  <p>
9
    {% blocktrans with name=object.name %}
10
    Are you sure you want to delete category "{{ name }}"?
11
    {% endblocktrans %}
12
  </p>
13
    <p>{% trans "All its announces of will be also deleted" %}</p>
14
  <div class="buttons">
15
    <button class="delete-button">{% trans "Delete" %}</button>
16
    <a class="cancel" href="{{ object.get_absolute_url }}">{% trans 'Cancel' %}</a>
17
  </div>
18
</form>
19
{% endblock %}
(6-6/12)