{% extends "aristotle_mdr/user/userHome.html" %} {% load notifications_tags aristotle_tags util_tags i18n %} {% block sidebar %} {% include "aristotle_mdr/user/userSideBar.html" with inboxFolder=folder %} {% endblock %} {% block page %}

{% block title %}Notifications {% if folder %}- {{ folder }}{% endif %}{% endblock %}

Mark all as read
{% if page_obj.has_other_pages %} Showing {{ page_obj.start_index }} - {{ page_obj.end_index }} of {{ page_obj.paginator.count }} results. {% else %} Showing {{ page_obj.paginator.count }} results. {% endif %} {% for notice in page %} {% endfor %}
Notice Time since Delete
{% if notice.unread %} Unread message {% else %} Read message {% endif %} {% if notice.actor == notice.target %} {% elif notice.actor.get_absolute_url %} {% if notice.actor.full_name %} {{ notice.actor.full_name }} {% else %} {{ notice.actor }} {% endif %} {% elif notice.actor.full_name %} {{ notice.actor.full_name }} {% else %} {{ notice.actor }} {% endif %} {{ notice.verb }} {% if notice.action_object %} {% if notice.action_object.get_absolute_url %} {{ notice.action_object }} {% else %} {{ notice.action_object }} {% endif %} {% endif %} {% if notice.target %} {% if notice.target.get_absolute_url %} {{ notice.target }} {% else %} {{ notice.target }} {% endif %} {% endif %} {{ notice.timesince }} ago
{% if page.count == 0 and folder == 'unread' %}

You have no unread notifications.

Good job!

{% elif page.count == 0 %}

You have no notifications.

{% endif %} {% include "aristotle_mdr/helpers/paginator.html" with page=page_obj %} {% endblock %}