{% extends "shared/base_dashboard.html" %} {% load static %} {% block title %}Notificações - Chaplin{% endblock %} {% block content %}

Notificações

Suas notificações mais recentes

{% for notif in notifications %}
{% if notif.tipo == 'tarefa_atribuida' %} {% elif notif.tipo == 'tarefa_concluida' %} {% elif notif.tipo == 'nova_mensagem' %} {% else %} {% endif %}

{{ notif.titulo }}

{{ notif.created_at|date:"d/m H:i" }}
{% if notif.mensagem %}

{{ notif.mensagem }}

{% endif %} {% if notif.task %} Ver tarefa → {% endif %}
{% empty %}

Nenhuma notificação por aqui.

{% endfor %}
{% endblock %}