>Renamed app "standards" to "dokumente" - finally working as expected.

This commit is contained in:
Adrian A. Baumann
2025-10-22 15:08:42 +02:00
parent 4de2ad38c5
commit b391ab0ef6
27 changed files with 32 additions and 32 deletions

View File

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