{% extends 'base.html.twig' %} {% block title %}User{% endblock %} {% block body %}
{% include 'admin/header.html.twig' with {'title': 'User', 'button_link': path('app_user_index')} %}
Id {{ user.id ? user.id : 'NULL' }}
Profile Picture Profile picture of {{ user.username }} | {{ user.profilePicture ? user.profilePicture : 'NULL' }}
Username {{ user.username ? user.username : 'NULL' }}
Email {{ user.email ? user.email : 'NULL' }}
Banner {{ user.banner ? user.banner : 'NULL' }}
Website Link {% if user.websiteLink %} {{ user.websiteLink }} {% else %}

NULL

{% endif %}
Country {{ user.country ? user.country.value : 'NULL' }}
Roles {{ user.roles ? user.roles|json_encode : 'NULL' }}
Created At {{ user.createdAt ? user.createdAt|date('Y-m-d H:i:s') : 'NULL' }}
Social Media {% if user.socialMedias %} {% if user.socialMedias.xTwitter %} {% endif %} {% if user.socialMedias.instagram %} {% endif %} {% if user.socialMedias.github %} {% endif %} {% if user.socialMedias.figma %} {% endif %} {% else %} {% endif %}
Twitter {{ user.socialMedias.xTwitter }}
Instagram {{ user.socialMedias.instagram }}
GitHub {{ user.socialMedias.github }}
Figma {{ user.socialMedias.figma }}
NULL
Edit {{ include('admin/user/_delete_form.html.twig') }}
{% endblock %}