11 lines
297 B
HTML
11 lines
297 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1>Vorgaben Informatiksicherheit BIT</h1>
|
|
<h2>Aktuell erfasste Standards</h2>
|
|
<ul>
|
|
{% for standard in standards %}
|
|
<li><a href="{% url 'standard_detail' nummer=standard.nummer %}">{{ standard }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|