{% load i18n static %} {% if requests %}
{% trans "Employee" %}
{% trans "Requested Shift" %}
{% trans "Previous/ Current Shift" %}
{% trans "Actions" %}
{% for shift_request in requests %}
Username
{{shift_request.employee_id}}
{{shift_request.shift_id}}
{{shift_request.previous_shift_id}}
{% endfor %}
{% else %}

{% trans "No data Found..." %}

{% endif %}