{% extends "base.html" %} {% load i18n static inkscape pagination_tags %} {% block "css" %}{{ block.super }} {% endblock %} {% block "js" %}{{ block.super }} {% endblock %} {% block content %}

{{ title }}
{% if object_list.count > 0 %}
{% endif %} {% if object_list.new.count > 0 %}
{% endif %}

{% autopaginate object_list 15 as items %} {% for object in items %} {% with object.data as data %}
{% if data.instance_deleted %} {% trans {{ data.instance_deleted }} {% elif not object.viewed %} {% trans {{ object.subject }} {% else %} {{ object.subject }} {% endif %}
{{ object.created|timetag }}
{% if not data.instance_deleted %} {{ object.body }} {% else %}

{% trans "This notification was for an object that no longer exists. It has been deleted." %}

{% endif %}
{% endwith %} {% endfor %}
{% paginate %} {% endblock %}