{% extends 'layouts/base.html' %} {% load i18n static %} {% block title %}{% trans "Delete Attachment" %}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% trans "Delete Attachment" %}

{% trans "Confirm deletion of evidence file" %}

{% trans "Warning" %}

{% trans "This action cannot be undone. The file will be permanently deleted." %}

{% trans "Are you sure you want to delete this attachment?" %}

{% trans "File Name" %}
{{ attachment.filename }}
{% trans "Description" %}
{{ attachment.description|default:"-" }}
{% trans "Uploaded By" %}
{{ attachment.uploaded_by.get_full_name }}
{% trans "Upload Date" %}
{{ attachment.created_at|date:"Y-m-d H:i" }}
{% trans "Standard" %}
{{ attachment.compliance.standard.code }}
{% trans "Department" %}
{{ attachment.compliance.department.name }}
{% csrf_token %}
{% trans "Cancel" %}
{% endblock %}