11 lines
215 B
HTML
11 lines
215 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1>Vorgaben Informatiksicherheit BIT</h1>
|
|
<h2>Standards</h2>
|
|
<ul>
|
|
{% for standard in standards %}
|
|
<li>{{ standard }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|