{% extends "partials/base.html" %} {% load static %} {% block content %} {% load custom_filters %}
{% block title %} {% include "partials/title.html" with title="Announcement" text="Dashboard" textone="All Announcement" %} {% endblock title %}
{% for announcement in announcements %}
{{ announcement.title }}

{{ announcement.message|clean_truncate:50 }}......

Added on : {{ announcement.updated_at|timesince }} ago

{% empty %}
No announcements available
{% endfor %}
{% endblock content %}