add retroactive check for yesterday's missed habits on /today
Users often only realize a habit was missed the next day; a same-day-only check made it impossible to record it after the fact.
This commit is contained in:
@@ -24,6 +24,15 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% if yesterday_missed %}
|
||||
<h2>어제 놓친 습관</h2>
|
||||
<div class="card">
|
||||
{% for item in yesterday_missed %}
|
||||
{% include "partials/yesterday_item.html" %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<h2>형성 습관</h2>
|
||||
<div class="card">
|
||||
{% for item in build_items %}
|
||||
|
||||
Reference in New Issue
Block a user