
- Updated Risk model to include description, created_at, and updated_at fields. - Modified RiskSerializer to include created_at and updated_at in serialized output. - Improved logging in signals for Risk and Control models, including serialization of values. - Added new template tags for CIA label mapping. - Refactored URL patterns for better clarity and added detail views for risks, controls, and incidents. - Implemented list and detail views for risks, controls, and incidents with filtering options. - Enhanced CSS for better UI/UX, including breadcrumbs and table styling. - Created new templates for displaying individual risks, controls, and incidents with detailed information.
8 lines
No EOL
253 B
HTML
8 lines
No EOL
253 B
HTML
{% extends "base.html" %}
|
|
{% block crumbs %}
|
|
<li><a href="{% url 'risks:list_incidents' %}">Vorfälle</a></li>
|
|
<li><a href="{% url 'risks:show_incident' incident.id %}">{{ incident.title }}</a></li>
|
|
{% endblock %}
|
|
{% block content %}
|
|
|
|
{% endblock %} |