{% extends "layout.html" %} {% block title %}{{ t('dashboard_title') }} - Profa Eficientă{% endblock %} {% block main %}
{{ current_user.name[0]|upper if current_user.name else 'P' }}

{{ t('dashboard_welcome_back') }}, {{ current_user.name.split()[0] if current_user.name else t('dashboard_teacher') }}

{{ t('dashboard_intro') }}

{{ t('dashboard_new_chat') }}

{{ t('dashboard_quick_actions') }}

{{ t('dashboard_recent_conversations') }}

{{ t('dashboard_view_all') }} →
{% if recent_conversations %} {% for conv in recent_conversations[:5] %}

{{ conv.title or t('dashboard_untitled_conversation') }}

{{ conv.updated_at.strftime('%d %b %Y, %H:%M') if conv.updated_at else '' }}

{% endfor %} {% else %}

{{ t('dashboard_no_conversations') }}

{{ t('dashboard_start_first_conversation') }}
{% endif %}

{{ t('dashboard_recent_generated_files') }}

{{ t('dashboard_view_all') }} →
{% if recent_materials %} {% for material in recent_materials[:4] %}

{{ material.title or t('dashboard_untitled') }}

{{ material.type or t('dashboard_material') }} • {{ material.created_at.strftime('%d %b %Y') if material.created_at else '' }}

{% endfor %} {% else %}

{{ t('dashboard_no_generated_files') }}

{{ t('dashboard_no_generated_files_desc') }}

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}