{% extends 'template.html.twig' %} {% block title %} Employees List - {{ parent() }} {% endblock %} {% block body %}

Employees

{% for message in app.flashes('notice') %}
× {{ message }}
{% endfor %}
{{ form_start(form) }}
{{ form_row(form.pin ) }}
{{ form_row(form.name) }}
{{ form_end(form) }}
{% set counter = 0 %} {% for employee in employees %} {% set counter = counter + 1 %} {% else %} {% endfor %}
# PIN Name Joining Date Gender Blood Group Employee Type Actions
{{ counter }} {{ employee.Emp_Id }} {{ employee.Emp_Name }} {{ employee.JoiningDate|date('d-M-Y') }} {{ employee.Sex }} {{ employee.Emp_BGroup }} {% if employee.Inactive == 0 %} ACTIVE {% else %} RESIGNED {% endif %} {# #}
No records found
{% if employees.haveToPaginate %} {% endif %}
{% endblock %}