{% load i18n static %} {% if requests %}
{% trans "Employee" %}
{% trans "Requested Work Type" %}
{% trans "Previous/ Current Work Type" %}
{% trans "Actions" %}
{% for work_type in requests %}
Username
{{work_type.employee_id}}
{{work_type.work_type_id}}
{{work_type.previous_work_type_id}}
{% endfor %}
{% else %}

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

{% endif %}