{% if request.user.is_authenticated %}Capture one meaningful check-in.{% else %}Create your account to start saving check-ins.{% endif %}
{% if request.user.is_authenticated %} Each entry becomes a private artifact: you log the day, land on a confirmation detail view, and build your own momentum history. {% else %} You can already browse the demo dashboard. Once you sign up, new entries will belong only to your account. {% endif %}
This prevents your personal notes from mixing with the demo sample data. It is a common first step when an app starts storing user-specific information.
Thin slice, real workflow.
Create
{% if request.user.is_authenticated %}Submit a structured daily entry with validation, categories, and personal ownership.{% else %}Create an account in a few seconds so the app can keep your data separate from demo content.{% endif %}
Confirm
Each new entry opens its own detail page with a success state and related history.
Review
Use weekly bars and the history page to notice patterns instead of collecting dead data.
{% if is_demo_mode %}Demo focus and energy trend{% else %}Your focus and energy trend{% endif %}
Two bars per day show whether focus and energy are moving together or drifting apart.
{% if is_demo_mode %}Demo momentum history preview{% else %}Your momentum history preview{% endif %}
{{ entry.title }}
{{ entry.takeaway }}
{% if request.user.is_authenticated %}No private entries yet{% else %}No demo entries yet{% endif %}
{% if request.user.is_authenticated %} Start with one check-in above and this dashboard will instantly become your own useful Python product demo. {% else %} Create an account to start filling this dashboard with your own progress history. {% endif %}