{% load i18n %}

{% translate "Notifications" %}

{% if notification_count > 0 %} {{ notification_count }} {% endif %}
{% if notifications %}
{% for notification in notifications %}

{{ notification.message }}

{{ notification.created_at|timesince }} ago

{% endfor %}
{% else %}

{% translate "No new notifications" %}

{% endif %}