{% load i18n %} {% load static %} {% load basefilters %}
{% trans "Announcement." %}
{% for anoun in announcements %}
{% if perms.base.change_announcement or perms.base.delete_announcement %}
{% endif %}
{{ anoun.title }} {% if perms.base.view_announcement %}
{{anoun.get_views|length}}
{% endif %}
{% trans "Posted on" %}  {{ anoun.created_at|date:"F j, Y"}}   {% trans "at" %}   {{ anoun.created_at|time:"g:i A"}}

{{ anoun.description|safe }}

{% endfor %}