22 lines
848 B
HTML
22 lines
848 B
HTML
{% extends "users/base.html" %}
|
|
{% block content %}
|
|
{% if request.user.profile.agency.module_recoverdir %}
|
|
<div class="content-section col-12">
|
|
<h3>Dokumentenansicht {% if history == True %} - Version vom {{document.history_date|date:"d.m.Y"}}{% endif %}
|
|
<span style="float: right">
|
|
<a href="{% url 'recoverdir'%}" style="float: right" class="btn btn-secondary btn-sm "><small><i class="fas fa-chevron-circle-left"></i></small></a>
|
|
</span>
|
|
</h3>
|
|
<hr>
|
|
<h4>Beschreibung</h4>
|
|
<p>{{document.document_name}}</p>
|
|
<p>{{document.document_desc}}</p>
|
|
<p>Datum: {{document.document_date}}</p>
|
|
<hr>
|
|
<a href="{% url 'getdoc' document.document %}" target="_blank">Datei herunterladen</a>
|
|
<hr>
|
|
</div>
|
|
{% else %}
|
|
<h3>Auf dieses Modul haben Sie keinen Zugriff!</h3>
|
|
{% endif %}
|
|
{% endblock content %} |