HH/templates/standards/source_confirm_delete.html
2026-01-15 15:02:42 +03:00

99 lines
4.2 KiB
HTML

{% extends 'layouts/base.html' %}
{% load i18n %}
{% load action_icons %}
{% block title %}{% trans "Delete Source" %}{% endblock %}
{% block content %}
<div class="container-fluid px-4">
<div class="d-flex justify-content-between align-items-center mb-4">
<div>
<h1 class="h3 mb-0">{% trans "Delete Source" %}</h1>
<p class="text-muted mb-0">{% trans "Confirm deletion of standard source" %}</p>
</div>
<a href="{% url 'standards:source_list' %}" class="btn btn-outline-secondary">
{% action_icon "back" %} {% trans "Back to Sources" %}
</a>
</div>
<div class="row">
<div class="col-12 col-lg-8">
<div class="card">
<div class="card-body">
<div class="alert alert-warning">
{% action_icon "warning" %}
<strong>{% trans "Warning:" %}</strong> {% trans "This action cannot be undone." %}
</div>
<h5>{% trans "Are you sure you want to delete this source?" %}</h5>
<div class="table mt-3">
<table class="table table-sm">
<tr>
<th width="30%">{% trans "Code" %}</th>
<td><strong>{{ source.code }}</strong></td>
</tr>
<tr>
<th>{% trans "Name" %}</th>
<td>{{ source.name }}</td>
</tr>
<tr>
<th>{% trans "Arabic Name" %}</th>
<td>{{ source.name_ar|default:"-" }}</td>
</tr>
<tr>
<th>{% trans "Description" %}</th>
<td>{{ source.description|default:"-" }}</td>
</tr>
<tr>
<th>{% trans "Website" %}</th>
<td>
{% if source.website %}
<a href="{{ source.website }}" target="_blank">{{ source.website }}</a>
{% else %}
-
{% endif %}
</td>
</tr>
</table>
</div>
<form method="post" class="mt-4">
{% csrf_token %}
<div class="d-flex gap-2">
<button type="submit" class="btn btn-danger">
{% action_icon "delete" %} {% trans "Delete Source" %}
</button>
<a href="{% url 'standards:source_list' %}" class="btn btn-secondary">
{% trans "Cancel" %}
</a>
</div>
</form>
</div>
</div>
</div>
<div class="col-12 col-lg-4">
<div class="card">
<div class="card-header">
<h5 class="card-title mb-0">{% trans "Impact" %}</h5>
</div>
<div class="card-body">
<p class="small text-muted">
{% trans "Deleting this source will affect:" %}
</p>
<ul class="small">
<li>{% trans "All standards linked to this source" %}</li>
<li>{% trans "Compliance records for those standards" %}</li>
<li>{% trans "Any reports or analytics using this data" %}</li>
</ul>
<p class="small text-danger mt-3">
<strong>{% trans "Consider:" %}</strong> {% trans "You may want to mark this source as inactive instead of deleting it." %}
</p>
</div>
</div>
</div>
</div>
</div>
{% endblock %}