{% extends "base.html.twig" %} {% block titulo %}{{ usuario.nombre }} {{ usuario.primerapellido }} {{ usuario.segundoapellido }}{% endblock %} {% block subtitulo %} Perfil de usuario {% endblock %} {% block body %} {% block contenido %} {% set estado = usuario.getEstadoInscripcion %} {% set puedeVer = is_granted('ROLE_AUXILIAR_TESORERO') or is_granted('ROLE_AUXILIAR_SECRETARIO') or is_granted('ROLE_AUXILIAR_ORGANIZACION') or is_granted('ROLE_AZAFATO') %} {% set puedeEnviarMensaje = is_granted('ROLE_TESORERO') or is_granted('ROLE_SECRETARIO') or is_granted('ROLE_ORGANIZACION') %}
Fotografía de usuario {% if puedeEnviarMensaje %}

   {{ usuario.email }}

{% endif %} {% if usuario.comprobanteEstudiante %}

Estudiante

{% endif %} {% if usuario.sociedad is not null %}

{{ usuario.sociedad }}

{% endif %}
{% if puedeVer %}
{% if estado == '0' %}

No ha registrado inscripción

Inscripción en proceso

{% elseif estado == '20' %}

Inscripción confirmada

{% endif %}
{% endif %}

Datos personales

{% if usuario.institucion is not null %} {{ usuario.institucion }}
{% endif %} {% if usuario.pais is not null %} {{ usuario.pais }}
{% endif %} {% if puedeVer %} {% if usuario.direccion is not null %} {{ usuario.direccion }}
{% endif %} {% if usuario.telefono is not null %} {{ usuario.telefono }}
{% endif %} {% endif %}
{% endblock contenido %} {% endblock %}