{% load i18n humanize %}
{% if not object_list %}

{% trans 'No notifications found' %}

{% else %} {% for notification in object_list %} {% endfor %}
{% trans 'Notification' %} {% trans 'Actor' %} {% trans 'Date' %}
{{ notification }} {{ notification.actor|default:'' }} {{ notification.created|naturaltime }}
{% endif %} {% if is_paginated %} {% endif %}