{% extends 'base.html.twig' %} {% block title %}{{ user }} - {{ 'lang.profile'|trans }}{% endblock %} {% block body_class %}bg-gray-50{% endblock %} {% block body %}
{{ include('_components/profile_header.html.twig', { user: user }) }} {{ include('_components/profile_hero.html.twig', { user: user, variant: 'profile', show_actions: true, http_host: http_host }) }}
{{ include('_components/contact_list_card.html.twig', { user: user, show_heading: true }) }}
{{ include('_components/social_networks_card.html.twig', { user: user }) }}

{{ 'lang.systemInformation'|trans }}

{{ 'lang.verificationStatus'|trans }}
{{ user.isVerified ? 'lang.verified'|trans : 'lang.notVerified'|trans }}
{{ 'lang.accountStatus'|trans }}
{{ user.isActive ? 'lang.active'|trans : 'lang.inactive'|trans }}
{% if user.regDatetime %}
{{ 'lang.registrationDate'|trans }}
{{ user.regDatetime|date('d.m.Y') }}
{% endif %}
{% endblock %} {% block javascripts %} {{ encore_entry_script_tags('show') }} {% endblock %}