{% extends "main_base.html" %} {% load staticfiles %} {% load notifier %} {% load main_tags %} {% block title %}Notifications{% endblock %} {% block js %} {% endblock %} {% block body %}

{% block boxtitle %}All my notifications{% endblock %}


{% block inside_box %} {% if user_notifications.count > 0 %}
Mark all as read
{% endif %} {% for notification in user_notifications %}
{% if notification.get_representative_image %}

{% endif %}

{% if notification.reverse is True %} {% if user == notification.target %} you{% else %} {{ notification.target }}{% endif %} {{ notification.verb }} {{ notification.subject }} {% else %} {{ notification.subject }} {{ notification.verb }} {% if user == notification.target %} you{% else %} {{ notification.target }}{% endif %} {% endif %}
{{ notification.get_date }}

{% empty %} {% include "empty_space.html" %} {% endfor %} {% paginate %} {% endblock %} {% endblock %}