{% 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 by category and open any one for its detail view.{% endif %}

Back to dashboard {% if request.user.is_authenticated %} New check-in
{% csrf_token %}
{% else %} Log in Create account {% endif %}
All categories {% for category in categories %} {{ category.name }} ยท {{ category.entry_total }} {% endfor %}
{% if entries %}
{% 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
{% 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 %}