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

My Announcements

+ New
{% for ann in announcements %}
{{ ann.get_category_display }} {{ ann.get_status_display }}

{{ ann.title }}

{{ ann.created_at|date:"M d, Y" }}

{% if ann.status == 'rejected' and ann.rejection_reason %}

Rejection reason: {{ ann.rejection_reason }}

{% endif %}
{% if ann.status == 'approved' %} View {% endif %}
{% empty %}
📣

You haven't posted any announcements yet.

Post an Announcement
{% endfor %}
{% endblock %}