{% load i18n %}{% load static %}
{% if shifts %}
{% trans "Shift" %}
{% trans "Weekly Full Time" %}
{% trans "Full Time" %}
{% trans "Grace Time" %}
{% if perms.base.change_employeeshift or perms.base.delete_employeeshift %}
{% trans "Actions" %}
{% endif %}
{% for shift in shifts %}
{{shift}}
{{shift.weekly_full_time}}
{{shift.full_time}}
{% if shift.grace_time_id %}
{{shift.grace_time_id}}
{% else %}
{% trans "Nil" %}
{% endif %} {% if perms.base.change_employeeshift or perms.base.delete_employeeshift %}
{% if perms.base.change_employeeshift %} {% endif %} {% if perms.base.delete_employeeshift %}
{% csrf_token %}
{% endif %}
{% endif %}
{% endfor %}
{% else %}
Page not found. 404.
{% trans "There is no employee shifts at this moment." %}
{% endif %}