{% load basefilters %} {% load i18n static %} {% if no_comments %}
{% trans "There is no comments to show." %}
{% else %} {% for comment in comments %}
{% trans "Comment" %}
{{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" }}
{% endfor %} {% endif %}