Files
shinalokandClaude Sonnet 5 ef2a3ea082 prepare app for public app store distribution
- rebrand from 습관 트래커 to 해빗랩 across templates, manifest, service worker
- add HTTPS redirect middleware for reverse-proxied deployments
- add public landing page (/) and privacy policy page with real data
  handling disclosures
- add in-app account deletion (Apple review requirement)
- add Android TWA Digital Asset Links support (/.well-known/assetlinks.json)
- add SFTP deployment script for the Synology-hosted server

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-23 13:41:50 +09:00

35 lines
1.3 KiB
HTML

{% extends "base.html" %}
{% block title %}습관 관리 · 해빗랩{% endblock %}
{% block nav_habits %}active{% endblock %}
{% block content %}
<h1>습관 관리</h1>
<div class="tabs">
<a href="/habits?tab=build" class="{{ 'active' if tab == 'build' }}">만들고 싶은 습관</a>
<a href="/habits?tab=quit" class="{{ 'active' if tab == 'quit' }}">멈추고 싶은 습관</a>
<a href="/habits?tab=completed" class="{{ 'active' if tab == 'completed' }}">완료된 습관</a>
<a href="/habits?tab=abandoned" class="{{ 'active' if tab == 'abandoned' }}">포기한 습관</a>
</div>
{% if tab in ("build", "quit") %}
{% include "partials/habit_form.html" %}
{% endif %}
<div class="card">
{% if habits %}
<div id="habit-list">
{% for habit in habits %}
{% include "partials/habit_item.html" %}
{% endfor %}
</div>
{% else %}
<div class="empty-state">
{% if tab == "build" %}만들고 싶은 습관이 아직 없어요. 위에서 추가해보세요.
{% elif tab == "quit" %}끊고 싶은 습관이 아직 없어요. 위에서 추가해보세요.
{% elif tab == "abandoned" %}아직 포기한 습관이 없어요.
{% else %}아직 완료된 습관이 없어요.{% endif %}
</div>
{% endif %}
</div>
{% endblock %}