diff --git a/templates/dashboard.html b/templates/dashboard.html index 4080cfc..18a64db 100644 --- a/templates/dashboard.html +++ b/templates/dashboard.html @@ -27,24 +27,17 @@ 📝 Sign Up {% else %} + {# This block only executes for authenticated users (per app.py line 278) #}
- {% if current_user.is_authenticated %} - {% if current_user.profile_picture_url %} - Avatar - {% else %} -
{{ current_user.username[:2].upper() }}
- {% endif %} + {% if current_user.profile_picture_url %} + Avatar {% else %} -
?
+
{{ current_user.username[:2].upper() }}
{% endif %}
- {% if current_user.is_authenticated %} - {{ current_user.username }} - {% else %} - Anonymous User - {% endif %} + {{ current_user.username }}
⚙️ Settings