{% extends "base.html" %} {% block title %}Projects - AI Conversation Viewer{% endblock %} {% block content %}
{{ t('total_projects') }}
{{ projects|length }}
{{ t('total_sessions') }}
{{ projects|sum(attribute='session_count') }}
{{ t('avg_per_project') }}
{{ (projects|sum(attribute='session_count') / projects|length)|round(1) if projects|length > 0 else 0 }}
{% if current_view == 'claude' %} {{ t('claude') }} {% elif current_view == 'cursor' %} {{ t('cursor') if t('cursor') else 'Cursor' }} {% elif current_view == 'trae' %} {{ t('trae') if t('trae') else 'Trae' }} {% elif current_view == 'kiro' %} {{ t('kiro') if t('kiro') else 'Kiro' }} {% else %} {{ t('qwen') }} {% endif %} {{ t('view') }}
{{ t('active') }}
{{ t('no_sessions_desc') }} {{ current_view or 'Qwen' }} {{ t('has_been_used') }}