
- Updated `item_incident.html` to implement ERP-style tabs for better navigation and added action icons for editing and deleting incidents. - Enhanced the overview tab with translated labels and improved layout for incident details. - Introduced linked risks and history tabs with appropriate translations and table structures. - Modified `item_risk.html` to include action icons for editing and deleting risks. - Refined `list_controls.html` to improve filter section layout and added translations for filter labels. - Updated `list_incidents.html` to enhance filter functionality and table layout, including translations for headers and buttons. - Improved `list_risks.html` by adding an action icon for adding new risks. - Adjusted `notifications.html` to enhance the display of new notifications with improved formatting and links.
14 lines
No EOL
592 B
Python
14 lines
No EOL
592 B
Python
# ---------------------------------------------------------------------------
|
|
# unread_notifications_count()
|
|
# ---------------------------------------------------------------------------
|
|
def unread_notifications_count(request):
|
|
"""
|
|
Context processor:
|
|
Returns the number of unread notifications for the current user.
|
|
"""
|
|
if not request.user.is_authenticated:
|
|
return {"notifications_unread_count": 0}
|
|
|
|
from .models import Notification
|
|
count = Notification.objects.filter(user=request.user, read=False).count()
|
|
return {"notifications_unread_count": count} |