{% extends 'base.html' %} {% load i18n %} {% block content %}

{% trans "Attendance Records" %}

{% trans "Add Attendance" %}
{% for att in attendances %} {% empty %} {% endfor %}
{% trans "Date" %} {% trans "Employee" %} {% trans "Check In" %} {% trans "Check Out" %} {% trans "Actions" %}
{{ att.date }} {{ att.employee }} {{ att.check_in|default:"--" }} {{ att.check_out|default:"--" }}
{% trans "No attendance records found." %}
{% if is_paginated %} {% endif %}
{% endblock %}