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