{% extends '::base_admin.html.twig' %} {% set _route = app.request.attributes.get('_route') %} {% block title %}User profile{% endblock %} {% block body %} {{ breadcrumb() }}
  • {{ imageCropping(entity) }}
  • {% if hasAccess('user.admin_access') and app.user.isSuperAdmin == true %}
  • Admin access
  • {% endif %}

{{ entity.firstname }} {{ entity.lastname }}

    {% if entity.isSuperAdmin %}
  • {% trans %}Admin{% endtrans %}
  • {% endif %} {% if entity.country is defined %}
  • {{ entity.country }}
  • {% endif %}
  • {{ entity.birthdate|localizeddate('medium', 'none') }}
{% trans %}Profile info{% endtrans %}
  • {{ entity.email }}
  • {{ entity.phone }}
  • {% trans %}Created At{% endtrans %} {{ entity.createdAt|localizeddate('medium', 'none') }}
  • {% trans %}Updated At{% endtrans %} {{ entity.updatedAt|localizeddate('medium', 'none') }}
    A - {{ entity.firstname }} {{ entity.lastname }}
  • {{ entity.address }}
  • {{ entity.zip }} {{ entity.city }}
  • {% if entity.phone is not null %}
  • {{ entity.phone }}
  • {% endif %} {% if entity.cellphone is not null %}
  • {{ entity.cellphone }}
  • {% endif %}
{% if emails is defined %}
{% for email in emails %} {##} {% endfor %}
{% trans %}Date{% endtrans %} {% trans %}Name{% endtrans %} {% trans %}Title{% endtrans %} Body
{{ email.createdAt|localizeddate('medium', 'none') }} {{ email.name }} {{ email.title }}
{% endif %}
{{ form_row(form.civility, {'form_type' : 'horizontal', attr: {'class' : 'input-xlarge'}}) }} {{ form_row(form.firstname, {'form_type' : 'horizontal', attr: {'class' : 'input-xlarge'}}) }} {{ form_row(form.lastname, {'form_type' : 'horizontal', attr: {'class' : 'input-xlarge'}}) }} {{ form_row(form.birthdate, {'form_type' : 'horizontal', attr: {'class' : 'input-xlarge'}}) }} {{ form_row(form.phone, {'form_type' : 'horizontal', attr: {'class' : 'input-xlarge'}}) }} {{ form_row(form.facebookId, {'form_type' : 'horizontal', attr: {'class' : 'input-xlarge'}}) }} {{ form_row(form.language, {'form_type' : 'horizontal', attr: {'class' : 'input-xlarge'}}) }}
{% trans %}Addresses{% endtrans %} {{ form_row(form.displayname, {'form_type' : 'horizontal', attr: {'class' : 'input-xlarge'}}) }} {{ form_row(form.phone, {'form_type' : 'horizontal', attr: {'class' : 'input-xlarge'}}) }} {{ form_row(form.cellphone, {'form_type' : 'horizontal', attr: {'class' : 'input-xlarge'}}) }} {{ form_row(form.address, {'form_type' : 'horizontal', attr: {'class' : 'input-xlarge'}}) }} {{ form_row(form.zip, {'form_type' : 'horizontal', attr: {'class' : 'input-xlarge'}}) }} {{ form_row(form.city, {'form_type' : 'horizontal', attr: {'class' : 'input-xlarge'}}) }} {{ form_row(form.country, {'form_type' : 'horizontal', attr: {'class' : 'input-xlarge'}}) }}
{% trans %}Connection and access{% endtrans %} {{ form_row(form.username, {attr: {'class' : 'input-xlarge'}}) }} {{ form_row(form.email, {attr: {'class' : 'input-xlarge'}}) }} {{ form_row(form.password, {attr: {'class' : 'input-xlarge'}}) }} {{ form_row(form.isSuperAdmin, {attr: {'class' : 'input-xlarge'}}) }} {{ form_row(form.status, {attr: {'class' : 'input-xlarge'}}) }}
{{ form_errors(form) }} {{ form_rest(form, {'form_type' : 'horizontal', attr: {'class' : 'input-xlarge'}}) }}

{% endblock %} {% block javascripts %} {% endblock %}