{% extends 'base.html' %} {% block title %}Notifications — CampusTalent{% endblock %} {% block content %}

Notifications

{% csrf_token %}
{% for notif in notifications %}
{% if notif.sender %}
{{ notif.sender.first_name|first|upper }}
{% else %}
🔔
{% endif %}

{{ notif.message }}

{{ notif.created_at|timesince }} ago
{% if not notif.is_read %}
{% endif %}
{% if notif.link %} View → {% endif %}
{% empty %}
🔔

No notifications

You're all caught up!

{% endfor %}
{% endblock %}