{% extends 'layouts/base.html' %} {% load static %} {% block breadcrumbs %} {% endblock breadcrumbs %} {% block content %}

Notificações

Notificações Privadas

{% if private_notifications %} {% for notification in private_notifications %}

{{ notification.type }}

{{ notification.created_at }}

{{ notification.message }}

{% if not notification.viewed %} Não lida {% endif %}
{% endfor %} {% else %}

Não há notificações privadas.

{% endif %}

Notificações Públicas

{% if public_notifications %} {% for notification in public_notifications %}

{{ notification.type }}

{{ notification.created_at }}

{{ notification.message }}

{% if not notification.viewed %} Não lida {% endif %}
{% endfor %} {% else %}

Não há notificações públicas.

{% endif %}
{% endblock content %}