Address
City: {{ company.city }}
Country: {{ company.country }}
Additional Information:
Notes: {{ company.notes }}
Num Employees: {{ company.numEmployees | trim }}
Sales: {{ company.sales }}
HQ Location: {{ company.hqLocation }}
Sample Email: {{ company.sampleMail }}
{% for candidate in employees %} {# {{dump(candidate)}} #} {# #} {# #} {# #} {% endfor %}
ID First Name Last Name Email Department Position Co. Phone
{{ candidate.id }} {{ candidate.firstName }} {{ candidate.lastName }} {{ candidate.email }}{{ candidate.company }}{{ candidate.department }} {{ candidate.position }} {{ candidate.phone }}{{ candidate.source }}
{% if is_granted('ROLE_ADMIN') or is_granted('ROLE_SUPERVISOR') or is_granted('ROLE_USER') %}
{% for candidate in contacts %} {# {{dump(candidate)}} #} {# #} {# #} {# #} {% endfor %} {# #}
ID First Name Last Name Email Department Position Co. Phone
{{ candidate.id }} {{ candidate.firstName }} {{ candidate.lastName }} {{ candidate.email }}{{ candidate.company }}{{ candidate.department }} {{ candidate.position }} {{ candidate.phone }}{{ candidate.source }}
157154  Rita  Sethy  Bank One, Los Angeles, US  Private Banking  Financial Advisor  1 310 209 4000 
{#

Note from Dev: We need to bring from the DB the candidates that have this company.(Pending)

#}
{% endif %}

List of Assignments

{% for assignment in company.assignments %} {% endfor %}
Assignment ID Assignment Title Start Date End date
{{ assignment.id }} {{ assignment.assignment }} {{ assignment.startDate|date('d/m/Y') }} {{ assignment.endDate|date('d/m/Y') }}
{% include 'include/inline_editable.html.twig' with { 'editId': company.id, 'editURL': path('companies_update', { 'id': company.id }), 'container': '#CompanyCtrl' } %}