{% macro notification_overview(unread_count, recent_notifications) %}
Notifications
View All
Unread:
{{ unread_count }}
{% if recent_notifications %}
Recent Notifications
{% for notification in recent_notifications %}
{{ notification.title }}
{{ notification.message }} • {{ notification.timestamp.strftime('%Y-%m-%d %H:%M') }}
{% if not notification.read %} New {% endif %}
{% endfor %}
{% else %}
No recent notifications
{% endif %}
{% endmacro %}