📝 Life Log App
📌 メモ
✅ Todo
📖 日記
保存
{% for e in entries %}
{{ e.created_at }}
{{ e.title }}
{{ e.content | replace('\n', '
') | safe }}
{% if e.image %}
{% endif %}
{% if e.type == 'todo' %}
完了/未完了
{% endif %}
編集
削除
{% endfor %}