{% extends "app_home/base.html" %} {% load static %} {% load i18n %} {% block navbar_app %} {% include 'app_home/_sidebar.html' %} {% endblock %} {% block title %}

{{ SIRENE_APPNAME|default:"Sirene" }} - {% translate 'Messages' %}


{% endblock %} {% block content %}
  {% translate 'Public page' %}
{% if 'p_sirene_history' in aaa.perms %}
  {% translate 'History' %}
{% endif %} {% if 'p_sirene_new' in aaa.perms %}
  {% translate 'New' %}
{% endif %}
{% if 'p_sirene_flushall' in aaa.perms %}
{% csrf_token %}
{% endif %}

{% if pages %}{% for page in pages %}

{{ page.displayname }}

{% if page.is_restricted %}

{% translate 'Private' %}

{% endif %}

{{ page.created_at }}

{% if page.updated_at %} {{ page.updated_at }} {% endif %}

{{ page.category }} / {{ page.severity }}


{% endfor %} {% else %} {% translate 'No message' %} {% endif %} {% endblock %}