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