{% load i18n static %}
{% trans "Comments" %}
{% csrf_token %}
    {% if comments %} {% for comment in comments %}
  1. {{ comment.comment }}
    {% for file in comment.files.all %} {% endfor %}
    {% csrf_token %}
    {% trans 'by' %} {{ comment.employee_id.get_full_name }} @ {{comment.request_id.employee_id.get_full_name }} {% trans "'s attendance request" %}
  2. {% endfor %} {% else %}
    {% trans "There are no comments to show." %}
    {% endif %}