47 lines
2.0 KiB
Twig
47 lines
2.0 KiB
Twig
|
{% extends '@default/base.html.twig' %}
|
||
|
|
||
|
{% block title %}
|
||
|
Profile of {{ user.username }}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
|
||
|
<div class="container box rounded bg-dark mt-5 mb-5">
|
||
|
<div class="row">
|
||
|
<div class="col-md-3 border-right">
|
||
|
<div class="d-flex flex-column align-items-center text-center p-3 py-5">
|
||
|
{% if user.avatar is not null %}
|
||
|
<img class="rounded-circle mt-5 mb-4"
|
||
|
src="{{ avatar_asset(user.avatar)|imagine_filter('squared_thumbnail_small') }}"
|
||
|
alt="profile image"/>
|
||
|
{% endif %}
|
||
|
<span class="font-weight-bold">{{ user.username }}</span>
|
||
|
{% if is_granted('ROLE_ADMIN') %}
|
||
|
<span class="font-weight-bold">
|
||
|
<a href="{{ path('app_main', { '_switch_user': user.username }) }}">switch user</a>
|
||
|
</span>
|
||
|
{% endif %}
|
||
|
|
||
|
<span class="text-white-50"><i class="fa fa-lg fa-envelope me-1"></i><a href="mailto:{{ user.email }}">{{ user.email }}</a></span>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="col-md-5 border-right">
|
||
|
<div class="p-3 py-5">
|
||
|
<div class="d-flex justify-content-between align-items-center mb-3">
|
||
|
<h4 class="text-right">User Profile</h4>
|
||
|
</div>
|
||
|
<div class="row mt-2">
|
||
|
<label class="labels" for="first-name">First Name</label>
|
||
|
<input type="text" disabled id="first-name" class="form-control" value="{{ user.firstName }}">
|
||
|
|
||
|
<label class="labels" for="last-name">Last Name</label>
|
||
|
<input type="text" disabled id="last-name" class="form-control" value="{{ user.lastName }}">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
{% endblock %}
|