{% extends 'ResourcesManagerBundle::layout.html.twig' %}
{% block section %}
Direct Assign
{% endblock %}
{% block subsection %}
{{project.name|title}}
{% endblock %}
{% block body %}
{{parent()}}
Employee |
Department |
Enterprise Profile |
Actions |
{% for employee in employees %}
{% if employee.userproject == 0 %}
{{employee.employee.name}} {{employee.employee.lastnames}} |
{{employee.employee.department}} |
{{employee.employee.profile}} |
Add to team
|
{% endif %}
{% endfor %}
Employee |
Department |
Enterprise Profile |
Action |
{% for user in projectteam %}
{{user.employee}} |
{{user.employee.department}} |
{{user.employee.profile}} |
Remove from team |
{% endfor %}
{% endblock %}
{% block javascripts %}
{{parent()}}
{% endblock %}