{% load basefilters static %} {% load i18n %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{{announcement.title}}{% trans "'s comments" %}
{% if not announcement.disable_comments %}
{% csrf_token %}
{% if no_comments %}
{% trans "There are no comments to show." %}
{% else %}
    {% for comment in comments %}
  1. {{ comment.comment }} {% if perms.base.delete_announcementcomment or request.user == comment.created_by %} {% endif %}
    {% trans "By" %}
    {{ comment.employee_id }}
    {% trans "Date & Time" %} {% trans "on" %}  {{ comment.created_at|date:"F j, Y" }}   {% trans "at" %}   {{ comment.created_at|time:"g:i A" }}
  2. {% endfor %}
{% endif %} {% else %}
Page not found. 404.
{% trans "Comments have been disabled for this announcement." %}
{% endif %}