{% extends 'base.html' %} {% block title %}Notificações{% endblock %} {% block content %}

Notificações

{% if notifications %}
{% for notification in notifications %} {% endfor %}
Tipo Título Destinatário Status Data Ações
{{ notification.get_tipo_display }} {{ notification.titulo }} {{ notification.destinatario.nome }} {{ notification.get_status_display }} {{ notification.created_at|date:"d/m/Y H:i" }} {% if not notification.lida %} {% endif %}
{% else %}
Nenhuma notificação encontrada

As notificações aparecerão aqui quando houver atualizações importantes.

{% endif %}
{% endblock %}