update
This commit is contained in:
33
templates/osint/keyword_confirm_delete.html
Normal file
33
templates/osint/keyword_confirm_delete.html
Normal file
@@ -0,0 +1,33 @@
|
||||
{% 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">
|
||||
<strong>Внимание!</strong> Сигурни ли сте, че искате да изтриете "{{ object.name }}"?
|
||||
Това действие не може да бъде отменено.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="gov-card" style="margin: 2rem 0;">
|
||||
<h3>{{ object.name }}</h3>
|
||||
<p><strong>Ключова Дума:</strong> <code>{{ object.keyword }}</code></p>
|
||||
<p><strong>Тип:</strong> {{ object.get_keyword_type_display }}</p>
|
||||
<p><strong>Увереност:</strong> {{ object.confidence_score }}%</p>
|
||||
</div>
|
||||
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
<div class="form-actions">
|
||||
<button type="submit" class="btn btn-danger">Да, Изтрий</button>
|
||||
<a href="{% url 'osint:admin_dashboard' %}" class="btn btn-secondary">Отказ</a>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user