Brute-Force-Rename - Don't expect this to run.

This commit is contained in:
2025-10-02 13:47:42 +02:00
parent 4259393916
commit 20359cf33d
25 changed files with 83 additions and 259 deletions

View File

@@ -0,0 +1,13 @@
{% extends "base.html" %}
{% block content %}
<h1>Standards Informatiksicherheit</h1>
<ul>
{% for dokument in dokumente %}
<li>
<a href="{% url 'dokument_detail' nummer=dokument.nummer %}">
{{ dokument.nummer }} {{ dokument.name }}
</a>
</li>
{% endfor %}
</ul>
{% endblock %}