{% if grouped_unread %} Mark all as read {% endif %}
{% if not notifications %}

You have no notifications yet.

{% else %} {# Unread Notifications grouped by type #} {% if grouped_unread %}

Unread

{% for type, items in grouped_unread.items %}
{{ type|title|replace:"_, " }} {{ items|length }}
    {% for n in items %}
  • {{ n.message }}
    {{ n.created_at|timesince }} ago
    {% if n.target_url %} View {% endif %}
  • {% endfor %}
{% endfor %}
{% endif %} {# Recent History #}

Recent History

{% for n in notifications|slice:":20" %}
{{ n.message }}
{{ n.created_at|date:"M d, Y" }}
{{ n.notification_type|title|replace:"_, " }} {% if n.target_url %} View {% endif %}
{% endfor %}
{% endif %}