{% extends "base.html" %} {% block title %}Dashboard — cclog{% endblock %} {% block content %}
{{ overview.total_sessions }}
Conversations
{{ (overview.total_input_tokens + overview.total_output_tokens) | format_tokens }}
Total Tokens
${{ "%.2f" | format(overview.total_cost) }}
Est. Cost
{{ overview.total_messages }}
Messages

Activity

Models

{% for m in overview.models_used %}
{{ m.model | short_model }} {{ m.session_count }} sess ${{ "%.2f" | format(m.cost) }}
{% endfor %} {% if not overview.models_used %}

No model data

{% endif %}

Top Projects

{% for p in overview.top_projects[:6] %}
{{ p.project | short_project }}
{{ p.session_count }} sess · ${{ "%.2f" | format(p.cost) }}
{% endfor %}

Activity Heatmap

Recent Conversations

{% for s, meta in recent %}
{{ get_display_name(s, meta) }} {{ s.project_path | short_project }}
{% for tag in meta.tags %} {{ tag }} {% endfor %}
{{ (s.total_input_tokens + s.total_output_tokens) | format_tokens }} tok {{ s.started_at | format_date }}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}