{% extends "base.html" %} {% load static %} {% block title %}Lista de notificaciones{% endblock title %} {% block botones %} Enviar notificación {% endblock botones %} {% block contenido %}
{% for notificacion in pagination %} {% empty %} {% endfor %}
Asunto de notificación Fecha de realización
{{ notificacion.asunto }} {{notificacion.fecha_creacion }} Ver detalles
No hay notificaciones realizadas.
{% endblock contenido %} {% block pagination %} {% include 'paginacion.html' %} {% endblock pagination %} {% block js %} {% include 'notificacion/modal_enviar_notificacion.html' %} {% endblock js %}