{% extends "base.html" %} {% block title %}기록 · 해빗랩{% endblock %} {% block nav_history %}active{% endblock %} {% block shell_class %} wide{% endblock %} {% block content %}
| 습관 | {% for wd in ["일", "월", "화", "수", "목", "금", "토"] %}{{ wd }} | {% endfor %}완료율 |
|---|---|---|
| {{ row.name }} {{ "형성" if row.habit_type == "build" else "중단" }} | {% for iso_date, checked in row.checks.items() %}{% if checked is none %}– {% elif checked %}✓ {% else %} {% endif %} | {% endfor %}{{ row.completion_rate }}% |