|
{% extends "corbo/manage.html" %}
|
|
{% load i18n %}
|
|
{% block content %}
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<p>
|
|
{% blocktrans with name=object.name %}
|
|
Are you sure you want to delete category "{{ name }}"?
|
|
{% endblocktrans %}
|
|
</p>
|
|
<p>{% trans "All its announces of will be also deleted" %}</p>
|
|
<div class="buttons">
|
|
<button>{% trans "Delete" %}</button>
|
|
<a class="cancel" href="{{ object.get_absolute_url }}">{% trans 'Cancel' %}</a>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|