24 lines
721 B
HTML
24 lines
721 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Excluir {{ object }} | Autocensup{% endblock %}
|
|
{% block page_pretitle %}{{ config.title }}{% endblock %}
|
|
{% block page_title %}Excluir registro{% endblock %}
|
|
|
|
{% block content %}
|
|
<form method="post" class="card">
|
|
{% csrf_token %}
|
|
<div class="card-body">
|
|
<div class="alert alert-danger">
|
|
Confirma a exclusao de <strong>{{ object }}</strong>?
|
|
</div>
|
|
</div>
|
|
<div class="card-footer text-end">
|
|
<a href="{% url 'crud_detail' config.slug object.pk %}" class="btn">Cancelar</a>
|
|
<button type="submit" class="btn btn-danger">
|
|
<i class="ti ti-trash me-2"></i>
|
|
Excluir
|
|
</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|