ISO-27001-Risk-Management/risks/urls.py
= ff134eee9a Add FontAwesome webfonts and update templates for Risiko Management
- 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.
2025-09-07 23:07:56 +02:00

13 lines
No EOL
414 B
Python

from django.urls import path
from . import views
app_name = "risks"
urlpatterns = [
path("", views.dashboard, name="dashboard"),
path("risks/index", views.dashboard, name="index"),
path("risks/stats", views.stats, name="statistics"),
path("risks/risks", views.risks, name="risks"),
path("risks/controls", views.controls, name="controls"),
path("risks/incidents", views.incidents, name="incidents"),
]