{% extends 'base.html' %} {% load i18n %} {% block content %}

{% trans "Notifications" %}

{{ notifications.count }}
{% if notifications %}
{% for note in notifications %}

{{ note.message }}

{{ note.created_at|timesince }} {% trans "ago" %}
{% endfor %}
{% else %}

{% trans "No notifications yet." %}

{% endif %}
{% endblock %}