Files
vgui-cicd/dokumente/templates/standards/standard_list.html

13 lines
312 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% block content %}
<h1>Standards Informatiksicherheit</h1>
<ul>
{% for dokument in dokumente %}
<li>
<a href="{% url 'standard_detail' nummer=dokument.nummer %}">
{{ dokument.nummer }} {{ dokument.name }}
</a>
</li>
{% endfor %}
</ul>
{% endblock %}