Files
OSINT/templates/reports/delete.html
Iliyan Angelov ed94dd22dd update
2025-11-26 22:32:20 +02:00

27 lines
1.0 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'base.html' %}
{% block title %}Изтриване на Доклад - Официален Портал{% endblock %}
{% block content %}
<div class="form-container">
<h2>Изтриване на Доклад</h2>
<div class="gov-alert gov-alert-warning">
<div class="alert-icon"></div>
<div class="alert-content">
<p>Сигурни ли сте, че искате да изтриете този доклад?</p>
<p><strong>{{ object.title }}</strong></p>
<p>Това действие не може да бъде отменено.</p>
</div>
</div>
<form method="post" data-loading>
{% csrf_token %}
<div class="form-actions">
<button type="submit" class="btn btn-danger" data-tooltip="Това действие е необратимо">Да, Изтривам</button>
<a href="{% url 'reports:my_reports' %}" class="btn btn-secondary">Отказ</a>
</div>
</form>
</div>
{% endblock %}