ISO-27001-Risk-Management/risks/migrations/0008_rename_send_notification_sent.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

18 lines
357 B
Python

# Generated by Django 5.2.6 on 2025-09-07 19:59
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('risks', '0007_notification'),
]
operations = [
migrations.RenameField(
model_name='notification',
old_name='send',
new_name='sent',
),
]