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

Capture one meaningful check-in.

Each entry becomes a usable artifact: you log the day, land on a confirmation detail view, and keep building a real momentum history.

{% csrf_token %}
{% for field in form %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% if field.errors %}
{% for error in field.errors %}{{ error }}{% endfor %}
{% endif %}
{% endfor %}
Default categories are ready, and you can manage them later from Django Admin.
What this MVP already does

Thin slice, real workflow.

Create

Submit a structured daily entry with validation, categories, and tangible metrics.

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.

7-day insight

Focus and energy trend

Open full history
{% for day in weekly_trend %}
{{ day.focus }}/{{ day.energy }}
{{ day.label }} {{ day.minutes }}m
{% endfor %}
Recent check-ins

Momentum history preview

See every entry
{% if recent_entries %}
{% for entry in recent_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 %}

No entries yet

Start with one check-in above and this dashboard will instantly become your first useful Python product demo.

{% endif %}
{% endblock %}