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

Notice Board

Events, opportunities, and announcements from the community

{% if user.is_authenticated %} + Post Announcement {% endif %}
{% if selected_category %}Clear{% endif %}
{% if pinned %}
📌 Pinned
{% for ann in pinned %}
{% if ann.category == 'hackathon' %}⚡{% elif ann.category == 'event' %}🎉{% elif ann.category == 'opportunity' %}💼{% elif ann.category == 'competition' %}🏆{% else %}📌{% endif %}
Pinned {{ ann.get_category_display }} {% if ann.event_date %}📅 {{ ann.event_date|date:"M d, Y" }}{% endif %}

{{ ann.title }}

{{ ann.body|truncatechars:120 }}

{% endfor %}
{% endif %}
{% endblock %}