{% extends "base.html" %} {% block title %}Tu Cuenta - {{ user.username }}{% endblock %} {% block content %}

Tu Cuenta

Información del Perfil

{% if user.avatar_url %} Avatar {% else %}
{% endif %}
Usuario: {{ user.username }}
Email: {{ user.email }}
Miembro desde: {{ user.created_at.strftime('%d/%m/%Y') }}
Último acceso: {{ user.last_login.strftime('%d/%m/%Y %H:%M') if user.last_login else 'N/A' }}

Estadísticas

{{ favorites_count }}
Favoritos guardados
{{ searches_count }}
Búsquedas realizadas
{% if recent_searches %}

Búsquedas Recientes

{% for search in recent_searches %} {% endfor %}
Búsqueda Resultados Fecha
{{ search.query }} {{ search.results_count }} {{ search.searched_at.strftime('%d/%m/%Y %H:%M') }}
{% if searches_count > 10 %}
Ver historial completo →
{% endif %}
{% endif %} {% if recent_favorites %}

Favoritos Recientes

{% for noticia in recent_favorites %}
{% if noticia.imagen_url %} {% endif %}
{% if noticia.traduccion_id %} {{ noticia.titulo_trad or noticia.titulo }} {% else %} {{ noticia.titulo }} {% endif %}
Guardado: {{ noticia.created_at.strftime('%d/%m/%Y') }}
{% endfor %}
Ver todos los favoritos →
{% endif %}

Acciones

Cambiar contraseña
{% endblock %}