{% extends 'base.html.twig' %} {% block title %}CRM | {% trans %}User profile{% endtrans %}{% endblock %} {% block body %}
{% trans %}Edit Employee Profile{% endtrans %}

{{ employeeProfile.firstName }} {{ employeeProfile.lastName }} - {% trans %} Profile{% endtrans %}

{% trans %}First name{% endtrans %}: {{ employeeProfile.firstName }}

{% trans %}Last name{% endtrans %}: {{ employeeProfile.lastName }}

{% trans %}Address{% endtrans %}: {{ employeeProfile.street }}, {{ employeeProfile.zipCode }} {{ employeeProfile.city }}

{% trans %}Country{% endtrans %}: {{ employeeProfile.country }}

{% trans %}Experience{% endtrans %} ({% trans %}years{% endtrans %}): {{ employeeProfile.experience }}

{% trans %}Profession{% endtrans %}: {{ employeeProfile.profession }}

{% trans %}Phone no{% endtrans %}: {{ employeeProfile.phoneNo }}

{% trans %}Skills{% endtrans %}: {% for skill in employeeProfile.skills %} {{ skill.name | trans }} {% endfor %}

{% trans %}Languages{% endtrans %}: {% for language in employeeProfile.languages %} {{ language.language | trans }} {% endfor %}

{% trans %}Employee reports{% endtrans %}

{% for employeeReports in employeeProfile.employeeReports %} {% endfor %}
{% trans %}Report name{% endtrans %}
{{ employeeReports.title }} {% trans %}Show report{% endtrans %}
{% endblock %}