
- Added Notification model with admin interface for managing notifications. - Created context processor to count unread notifications for the user. - Introduced forms for updating the status of Risk, Control, Incident, and ResidualRisk. - Added views for displaying and managing notifications, including marking them as read. - Updated URLs to include routes for notifications and status updates. - Enhanced templates to support notifications display and status update forms. - Improved CSS for avatar and badge display in the navbar. - Translated various static texts to support internationalization.
27 lines
No EOL
1.3 KiB
Python
27 lines
No EOL
1.3 KiB
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/list_risks", views.list_risks, name="list_risks"),
|
|
path("risks/risks/<int:id>", views.show_risk, name="show_risk"),
|
|
path("risks/list_controls", views.list_controls, name="list_controls"),
|
|
path("risks/controls/<int:id>", views.show_control, name="show_control"),
|
|
path("risks/list_incidents", views.list_incidents, name="list_incidents"),
|
|
path("risks/incidents/<int:id>", views.show_incident, name="show_incident"),
|
|
|
|
# Notifications
|
|
path("notifications/", views.notifications, name="notifications"),
|
|
path("notifications/<int:pk>/read", views.notification_mark_read, name="notification_mark_read"),
|
|
path("notifications/mark_all_read", views.notification_mark_all_read, name="notification_mark_all_read"),
|
|
|
|
# Risks status
|
|
path("risks/<int:id>/status", views.update_risk_status, name="update_risk_status"),
|
|
path("controls/<int:id>/status", views.update_control_status, name="update_control_status"),
|
|
path("incidents/<int:id>/status", views.update_incident_status, name="update_incident_status"),
|
|
path("residuals/<int:risk_id>/review", views.update_residual_review, name="update_residual_review"),
|
|
] |