{% extends 'base.html.twig' %}
{% block title %}{{ 'profile.title'|trans }}{% endblock %}
{% block sidebar %}
{% endblock %}
{% block body %}
{{ 'profile.fields.email'|trans }} |
{{ user.email }} |
{{ 'profile.fields.username'|trans }} |
{{ user.username }} |
{{ 'profile.fields.full_name'|trans }} |
{{ user.fullName }} |
{{ 'profile.fields.phone'|trans }} |
{{ user.phoneNumber }} |
{{ 'profile.fields.language'|trans }} |
{% if user.locale == 'fr' %}
Français
{% elseif user.locale == 'nl' %}
Nederlands
{% elseif user.locale == 'en' %}
English
{% elseif user.locale == 'de' %}
Deutsch
{% endif %}
|
{{ 'profile.fields.address'|trans }} |
{{ user.fullAddress }} |
{{ 'profile.fields.created_at'|trans }} |
{{ user.createdAt|date('d/m/Y') }} |
{{ 'profile.fields.last_login'|trans }} |
{% if user.lastLoginAt %}
{{ user.lastLoginAt|date('d/m/Y H:i') }}
{% else %}
-
{% endif %}
|
{{ 'profile.fields.status'|trans }} |
{% if user.isVerified and user.isApproved %}
{{ 'profile.status.active'|trans }}
{% elseif user.isVerified and not user.isApproved %}
{{ 'profile.status.pending_approval'|trans }}
{% else %}
{{ 'profile.status.unverified'|trans }}
{% endif %}
|
{% endblock %}