{% extends 'FLCoreBundle:Base:show.html.twig' %} {% block title %}Usuario{% endblock %} {% block index_table %} {% if config.use_sedes %} {% endif %}
Id {{ entity.id }}
Username {{ entity.username }}
Email {{ entity.email }}
Activo {% if entity.isActive %} {% include 'FLCoreBundle:Base:badge_base.html.twig' with {'text':'SI', 'type':'success' } %} {% else %} {% include 'FLCoreBundle:Base:badge_base.html.twig' with {'text':'NO', 'type':'warning' } %} {% endif %}
Tiene Password {% if entity.password is not empty %} {% include 'FLCoreBundle:Base:badge_base.html.twig' with {'text':'SI', 'type':'success' } %} {% else %} {% include 'FLCoreBundle:Base:badge_base.html.twig' with {'text':'NO', 'type':'warning' } %} {% endif %}
Creado {{ entity.createdAt|date('d/m/Y H:i') }}
Actualizado {{ entity.updatedAt|date('d/m/Y H:i') }}
Perfiles Habilitados
    {% for group in entity.rolesGroups %}
  • {{ group.name }}
  • {% endfor %}
Sedes Habilitadas
    {% for sede in entity.sedes %}
  • {{ sede }}
  • {% endfor %}
{% endblock %}