{% extends 'base.html' %} {% load static %} {% block title %}Announcements — WildWatch{% endblock %} {% block content %}
📣

Club Announcements

Official updates from the WildWatch team

{% if announcements %} {% for ann in announcements %}
{{ ann.get_priority_icon }}
{% if ann.is_pinned %} 📌 Pinned {% endif %} {% if ann.priority == 'high' %}🚨 Urgent{% elif ann.priority == 'low' %}Low Priority{% else %}General{% endif %}
{{ ann.title }}

{{ ann.content|truncatechars:250 }}

{% if ann.author.profile.profile_photo %} {% endif %} {{ ann.author.username }} {{ ann.created_at|timesince }} ago
Read More
{% endfor %} {% else %}
📢

No announcements yet

Check back soon for updates from the WildWatch team.

{% endif %}
{% endblock %}