{% extends "base.html" %} {% block title %}{{ page_title }}{% endblock %} {% block meta_description %}{{ meta_description }}{% endblock %} {% block content %}
{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
History

{% if is_demo_mode %}Demo momentum entries{% else %}Your momentum entries{% endif %}

{% if is_demo_mode %}Browse the seeded sample history, then create an account when you want private tracking.{% else %}Filter your private check-ins, spot patterns faster, and open any entry for the full detail view.{% endif %}

Back to dashboard {% if request.user.is_authenticated %} New check-in
{% csrf_token %}
{% else %} Log in Create account {% endif %}
Total check-ins {{ history_overview.total_entries }}

{% if history_overview.latest_entry %}Latest: {{ history_overview.latest_entry.entry_date|date:"M j, Y" }}{% else %}No entries yet{% endif %}

Avg. momentum {{ history_overview.avg_momentum }}/10

Focus {{ history_overview.avg_focus }}/10 · Energy {{ history_overview.avg_energy }}/10

Current streak {{ history_overview.streak }} day{{ history_overview.streak|pluralize }}

Top lane: {{ history_overview.top_category }}

Deep work total {{ history_overview.total_minutes }}m

{% if is_demo_mode %}Sample time invested{% else %}Time protected for focused work{% endif %}

All categories {% for category in categories %} {{ category.name }} · {{ category.entry_total }} {% endfor %}
{% if entries %}
Recent pattern

Last {{ recent_activity|length }} check-ins at a glance

Quick comparison bars make it easier to notice whether focus, energy, or deep work is drifting.

{% for item in recent_activity %}
{{ item.entry.category.name }}

{{ item.entry.title }}

Focus
{{ item.entry.focus_score }}/10
Energy
{{ item.entry.energy_score }}/10
Deep work
{{ item.entry.deep_work_minutes }}m
{% endfor %}
{% for entry in entries %}
{{ entry.category.name }}

{{ entry.title }}

{{ entry.takeaway }}

Focus {{ entry.focus_score }}/10 Energy {{ entry.energy_score }}/10 {{ entry.deep_work_minutes }} min
Momentum score {{ entry.momentum_score }}/10
View details
{% endfor %}
{% else %}

{% if is_demo_mode %}No demo entries for this filter{% else %}No private entries for this filter{% endif %}

{% if is_demo_mode %}Try a different category or create an account to start tracking your own days.{% else %}Try a different category or create a new check-in from the dashboard.{% endif %}

{% if request.user.is_authenticated %} Create an entry {% else %} Create your account {% endif %}
{% endif %}
{% endblock %}