{% extends "base.html" %} {% load static from staticfiles %} {% block content %}

{{ page_name }}


{% if not notifications %}
No unread notifications.
{% else %} {% for notification in notifications %} {% endfor %}
Status Message Time
{% if notification.unread %}unread{% endif %} {% if notification.actor %} {% if notification.actor.get_view_url %} {{ notification.actor }} {% else %} {{ notification.actor }} {% endif %} {% endif %} {% if notification.verb %} {{ notification.verb }} {% endif %} {% if notification.action_object %} {% if notification.action_object.get_view_url %} {{ notification.action_object|striptags|truncatechars:50 }} {% else %} {{ notification.action_object|striptags|truncatechars:50 }} {% endif %} {% endif %} {% if notification.target and notification.action_object %} on {% endif %} {% if notification.target %} {% if notification.target.get_view_url %} {{ notification.target|truncatechars:50 }} {% else %} {{ notification.target|truncatechars:50 }} {% endif %} {% endif %} {{ notification.timestamp }}
{% endif %} {% endblock %} {% block endscripts %} {% endblock %}