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

{% translate 'Select a notification template' %}


{% endblock %} {% block content %}
{% translate 'Back' %}
{% if templates %} {% for template in templates %} {% endfor %}
{% translate 'Title' %} {% translate 'Category' %} {% translate 'Severity' %} {% translate 'Hint' %}
{{ template.title }} {{ template.category }} {{ template.severity }} {{ template.hint }}
{% else %}

{% translate 'No templates available' %}

{% endif %} {% endblock %}