{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block content %}

Notifications

{% for group in notification_groups %}
{{ group.label }}
{% for item in group.entries %} {% set target_url = item.notification.get('target_url', '') %}
{% set actor_username = item.actor['username'] if item.actor else '#' %} {{ actor_username }}
{{ item.time_ago }}
{% endfor %}
{% else %}
No notifications yet
{% endfor %}
{% endblock %}