{% extends "base.html" %} {% block content %}

Announcements

{% if broadcasts and broadcasts|length > 0 %}
{% for b in broadcasts %}
{{ b.title }}
Posted on {{ b.created_on.strftime('%d %b %Y %I:%M %p') }} {% if b.start_date or b.end_date %} • Active {% if b.start_date %}from {{ b.start_date.strftime('%d %b %Y') }}{% endif %} {% if b.end_date %}to {{ b.end_date.strftime('%d %b %Y') }}{% endif %} {% endif %}
{% if b.content %}

{{ b.content | replace('\n', '
') | safe }}

{% endif %}
{% if b.attachment_path %} View Attachment {% endif %}
{% endfor %}
{% else %}
No announcements for your department/role right now.
{% endif %}
{% endblock %}