{% extends "partials/base.html" %} {% load static %} {% block content %} {% load custom_filters %}
{% block title %} {% include "partials/title.html" with title="List Announcement" text="Dashboard" textone="List Announcementdata" %} {% endblock title %}

List Announcement

{% for announcement in announcementdata %} {% empty %} {% endfor %}
ID Title created by Show User Status Action
{{ forloop.counter }} {{announcement.title}} {{announcement.created_by}} {{ announcement.target_roles|title }} {% if not announcement.is_deleted %} Active {% else %} Inactive {% endif %}
No Announcement data
{% endblock content %}