{% extends 'shared/base.html' %} {% load custom_filters %} {% load static %} {% block content %}
Lista de Notificações
{% for message in messages %}
{{ message }}
{% endfor %}
    {% for notification in page_obj_received %}
  • {{ notification.message }}
    {{ notification.created_at }} {% if notification.is_read %}(Lido){% else %}(Não Lido){% endif %}
    Enviado por: {{ notification.sender.usuarios.nome }} {% if notification.send_to_all %} (Enviado para todos) {% endif %}
  • {% endfor %}
    {% for notification in page_obj_sent %} {% if not notification.send_to_all %}
  • {{ notification.message }}
    {{ notification.created_at }} {% if notification.is_read %}(Lido){% else %}(Não Lido){% endif %}
    Enviado para: {{ notification.user.usuarios.nome }}
  • {% else %}
  • {{ notification.message }}
    {{ notification.created_at }} {% if notification.is_read %}(Lido){% else %}(Não Lido){% endif %}
    Enviado para todos os usuários
  • {% endif %} {% endfor %}
{% endblock %}