{% extends 'index.html' %} {% block content %} {% load i18n %} {% trans "Employee" %} {% trans "Assigned Date" %} {% for employee_contribution in employee_contribution_list %} {% for employee in employee_contribution.employee_id.all %} {{employee}} {{employee_contribution.assign_date}} {% endfor %} {% endfor %} {% endblock content %}