feat(dgsi/archive): place main legal document first

This commit is contained in:
catvayor 2025-01-31 14:28:59 +01:00
parent 561d5c60d7
commit 088d032a82
Signed by: lbailly
GPG key ID: CE3E645251AC63F3

View file

@ -3,20 +3,6 @@
{% load i18n %}
{% block content %}
<h2 class="subtitle">{% trans "Archives de la DGNum" %}</h2>
<hr>
{% for file in archive_list %}
<a class="button bt-archive"
href="{% url "dgsi:dgn-protected-archive" file.pk %}">
<span class="tag is-pulled-left">
<span class="icon"><i class="ti ti-archive"></i></span>
</span>
<span class="ellipsis mx-2">{{ file }}</span>
<span class="tag is-pulled-right">{{ file.date }}</span>
</a>
{% endfor %}
<hr>
<h2 class="subtitle">{% trans "Statuts" %}</h2>
@ -43,4 +29,18 @@
</a>
{% endfor %}
<h2 class="subtitle">{% trans "Archives de la DGNum" %}</h2>
<hr>
{% for file in archive_list %}
<a class="button bt-archive"
href="{% url "dgsi:dgn-protected-archive" file.pk %}">
<span class="tag is-pulled-left">
<span class="icon"><i class="ti ti-archive"></i></span>
</span>
<span class="ellipsis mx-2">{{ file }}</span>
<span class="tag is-pulled-right">{{ file.date }}</span>
</a>
{% endfor %}
{% endblock content %}