{% extends "base.html" %} {% block title %}Log Detail - Bullet Journal{% endblock %} {% block content %}

Log Entry

{{ log.date.strftime('%A, %B %d, %Y') }}

{{ log.prompt or 'No prompt set.' }}

{{ log.notes or 'No notes.' }}

Bullets & Insights

{% if log.items %}
{% for item in log.items %}
{{ item.type }} {{ item.symbol }} {{ item.text }} {{ item.status }}
{% endfor %}
{% else %}

No bullets yet.

{% endif %}
{% if log.gratitude %}

Gratitude

{% endif %} {% if log.bedtime or log.wake_time or log.sleep_quality %}

Sleep

Bedtime: {{ log.bedtime or 'N/A' }}

Wake Time: {{ log.wake_time or 'N/A' }}

Quality: {{ log.sleep_quality or 'N/A' }}

{% endif %} {% if log.mood %}

Mood

{{ log.mood }}

{% endif %} Edit Log
{% endblock %}