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

🔔 Notifications

{{ notifications.count }} notification{{ notifications.count|pluralize }}

{% if notifications %}
{% for notif in notifications %}
{% if notif.sender and notif.sender.profile.profile_photo %} {% elif notif.sender %}
{{ notif.sender.username|first|upper }}
{% else %}
🌿
{% endif %}

{{ notif.message }}

{{ notif.created_at|timesince }} ago

{% if notif.notif_type == 'like' %}❤️ {% elif notif.notif_type == 'comment' %}💬 {% elif notif.notif_type == 'follow' %}👤 {% elif notif.notif_type == 'achievement' %}🏆 {% elif notif.notif_type == 'referral' %}🤝 {% elif notif.notif_type == 'announcement' %}📣 {% endif %}
{% endfor %}
{% else %}
🔔

No notifications yet

When someone likes or comments on your photos, you'll see it here.

{% endif %}
{% endblock %}