{% extends "base.html" %} {% block title %}Il Mio Profilo - Hersel.it{% endblock %} {% block content %}

{{ user.full_name }}

@{{ user.username }}

{% if user.is_admin %} Amministratore {% else %} Utente {% endif %}
Informazioni Profilo
Username:
{{ user.username }}
Email:
{{ user.email }}
Nome Completo:
{{ user.full_name }}
Ruolo:
{% if user.is_admin %} Amministratore {% else %} Utente {% endif %}
Registrato il:
{{ user.created_at.strftime('%d/%m/%Y alle %H:%M') if user.created_at else 'N/D' }}

{% if user.is_admin %} Dashboard {% endif %} Logout
{% endblock %}