{% extends "base.html" %} {% block head_hook %} {% endblock %} {% block content %}
total: {{count}},  jabber: {{jabber_count}},  email: {{email_count}}
{% if request.user.super_user %} Mailboxes: inbox  sent {% endif %}

{% if request.user.super_user %} {% endif %}

Page of {{pages_count}}

{% if count == 0 %}

There is no notifications for you. Start to use sandbox!
{% else %}

{% for item in notifications %} {% endfor %}
Transport Type Send status Subject From To Date
{% if item.transport == "email" %} email {% elif item.transport == "jabber" %} jabber {% endif %} {{item.type}} {% if item.sent %} notification is sent {% elif not item.sent %} notification not sent yet, but we will definitely send it {% endif %} {{item.subject | cutstring(50)}} {{item.author}} {{",".join(item.send_to)}} {{item.date.strftime("%Y-%m-%d %H:%M")}}
{% endif %}


 
{{notification.subject}}
Date: {% if notification.date %} {{notification.date.strftime("%Y-%m-%d %H:%M")}} {% else %} {{notification.date}} {% endif %}
Subject: {{notification.subject}}
From: {{notification.author}}
  {{notification.body}}
{% endblock %}