{% extends "admin_base.html" %} {% load i18n %} {% block nav_notificationadmin_class %}class="cur"{% endblock %} {% block left_panel %}

{% trans "Operations" %}

{% csrf_token %}

{% trans "Add new notification" %}


{% endblock %} {% block right_panel %}

{% trans "All Notifications" %}

{% if notes %} {% for note in notes %} {% endfor %}
{% trans "Notification Detail" %} {% trans "Operations" %}
{{ note.message }} {% if note.primary == 1 %} {% trans "(current notification)" %} {% endif %} {% if note.primary != 1 %} {% trans "Set to current" %} {% endif %} {% trans "Delete" %}
{% else %}

{% trans "Empty" %}

{% endif %} {% endblock %} {% block extra_script %} {% endblock %}