{% extends "base.html" %} {% block title %}일기 · 해빗랩{% endblock %} {% block nav_journal %}active{% endblock %} {% block shell_class %} wide{% endblock %} {% block content %}

일기

전체 {% for category in categories %} {{ category.name }} {% endfor %}
⚙ 관리
{% if tab == "manage" %} {% if categories %}
{% for category in categories %}
{{ category.name }} 기록 {{ entry_counts.get(category.id, 0) }}개
{% endfor %}
{% endif %}
{% else %} {% if on_this_day %}

📅 {{ on_this_day|length }}개의 지난 오늘

{% for item in on_this_day %}
{{ item.category_name }} {{ item.entry_date.year }}년 · {{ item.years_ago }}년 전 {{ item.title or (item.content[:30] ~ ('…' if item.content|length > 30 else '')) }}
{% endfor %}
{% endif %}
{% if prompt %}
💭 {{ prompt.question_text }}
{% endif %}
{% include "partials/journal_editor_toolbar.html" %}
{% for value, emoji, label in journal_mood_options %} {% endfor %}

{{ year }}년 {{ month }}월

{% for wd in ["일", "월", "화", "수", "목", "금", "토"] %}
{{ wd }}
{% endfor %}
{% for week in weeks %}
{% for d in week %} {% set day_summary = summary_map.get(d) %}
{{ d.day }} {% if day_summary %} {% for color in day_summary.category_colors %} {% endfor %} {% endif %}
{% endfor %}
{% endfor %}
{% endif %} {% endblock %}