{% load basefilters static %} {% load i18n %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{{announcement.title}}{% trans "'s comments" %}
{% csrf_token %}
{% if no_comments %}
{% trans "There are no comments to show." %}
{% else %}
    {% for comment in comments %}
  1. {{ comment.comment }}
    {% 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 %}