21 lines
721 B
HTML
21 lines
721 B
HTML
{% extends "users/base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% block content %}
|
|
{% if request.user.profile.agency.module_recoverdir %}
|
|
<div class="content-section col-9">
|
|
<h3>Dokument löschen</h3>
|
|
<hr>
|
|
<form method="POST" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
Möchten Sie <i>{{document.document_name}}</i> wirklich endgültig löschen?
|
|
<hr>
|
|
<a class="btn" href="{% url 'recoverdir' %} ">Abbrechen</a>
|
|
<button type="submit" class="btn btn-primary" style="float: right;">Dokument endgültig löschen</button>
|
|
</form>
|
|
</div>
|
|
{% else %}
|
|
<h3>Das Modul Notfallhilfe wurden in ihrer Agentur deaktiviert.</h3>
|
|
{% endif %}
|
|
{% endblock content %}
|