mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
704 B
24 lines
704 B
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}
|
|
{% with object as title %}
|
|
{{ block.super }}
|
|
{% endwith %}
|
|
{% endblock %}
|
|
|
|
{% block base_content %}
|
|
<form action="" method="post">{% csrf_token %}
|
|
<div class="panel panel-danger">
|
|
<div class="panel-heading text-center">
|
|
{% blocktrans %}
|
|
Confirma exclusão de "{{ object }}"?
|
|
{% endblocktrans %}
|
|
</div>
|
|
<div class="panel-body text-center">
|
|
<a href="{{ view.detail_url }}" class="btn btn-inverse">{% trans 'Cancelar' %}</a>
|
|
<input name="submit" value="{% trans 'Confirmar' %}" class="btn btn-danger" type="submit"></li>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|
|
|