{{ habit.name }}
{% if habit.condition_text %}
{{ habit.condition_text }}
{% endif %}
{{ weekday_label(habit.weekdays_mask) }} {% if habit.reminder_time %}· 알람 {{ habit.reminder_time.strftime("%H:%M") }}{% endif %}
{% set stats = stats_map[habit.id] %} {% if stats.scheduled_days > 0 %}
완료율 {{ stats.completion_rate }}% {% if stats.current_streak > 0 %} {{ '🏆' if is_milestone_streak(stats.current_streak) else '🔥' }} 연속 {{ stats.current_streak }}일 {% endif %}
{% endif %}
{% if habit.status.value == "active" %} {% else %} {% endif %}
{% set reminder_value = habit.reminder_time.strftime("%H:%M") if habit.reminder_time else "" %} {% include "partials/_weekday_alarm_fields.html" %}