{# templates/profiles/profile.html #} {% extends 'base.html' %} {% block title %}Mi Perfil{% endblock %} {% block content %}

Mi Perfil

Editar Perfil
{% if profile.avatar %} Avatar {% else %}
{{ profile.display_name|default:profile.user.username|slice:":1"|upper }}
{% endif %}

{{ profile.display_name|default:profile.user.username }}

@{{ profile.user.username }}

{% if profile.bio %}

{{ profile.bio }}

{% endif %}

Nombre de usuario

{{ profile.user.username }}

Email

{{ profile.user.email }}

Miembro desde

{{ profile.created_at|date:"d M Y" }}

{% endblock %}