{% extends 'base.html.twig' %} {% block content %}
{% embed "panels/page-title-panel.html.twig" %} {% block pageTitle %} {% if company is not null %} {{ company.name }} {% else %} Company {% endif %} Employees {% endblock %} {% endembed %}
{% if company is null %}
Please update your company info before adding departments
{% else %} Add a Employee {% endif %}
0
{% if employees is defined and employees|length > 0 %} {% for employee in employees %} {% endfor %} {% endif %}
ID First Name Last Name Email Department Date Created    
{{ employee.id }} {{ employee.user.firstName }} {{ employee.user.lastName }} {{ employee.user.email }} {% if employee.companyDepartment is not null %} {{ employee.companyDepartment.name }} {% endif %} {% if employee.dateCreated is not null %} {{ employee.dateCreated.format('Y-m-d') }} {% endif %} {# #}
{% endblock %} {% block scripts_post_body %} {% endblock %}