
- Added FontAwesome webfont files: fa-brands-400.woff2, fa-regular-400.woff2, fa-solid-900.woff2, and fa-v4compatibility.woff2. - Updated base.html to include FontAwesome stylesheet. - Renamed the application title from "Risiko Management" to "ISO27001 Management". - Enhanced navigation menu with dynamic active states for Dashboard, Statistics, Risks, Controls, and Incidents. - Created new templates for dashboard, controls, incidents, risks, and statistics with breadcrumb navigation.
7 lines
No EOL
159 B
HTML
7 lines
No EOL
159 B
HTML
{% extends "base.html" %}
|
|
{% block crumbs %}
|
|
<li><a href="{% url 'risks:risks' %}">Risiken</a></li>
|
|
{% endblock %}
|
|
{% block content %}
|
|
Risiken
|
|
{% endblock %} |