{% set weekday_names = ["월", "화", "수", "목", "금", "토", "일"] %}

{{ entry_date.strftime("%Y.%m.%d") }} ({{ weekday_names[entry_date.weekday()] }})

{% if items %}
{% for item in items %}
{{ item.category_name }} {% if item.moods %} {% for m in item.moods %}{{ journal_mood_emoji[m.value] }}{% endfor %} {% endif %}
{% if item.title %}
{{ item.title }}
{% endif %}
{{ item.content }}
{% if item.tags %} {% endif %} {% if item.attachments %}
{% for attachment in item.attachments %}
{% if attachment.media_type.value == "image" %} {{ attachment.original_filename }} {% else %} ▶ {{ attachment.original_filename }} {% endif %}
{% endfor %}
{% endif %}
{% for value, emoji, label in journal_mood_options %} {% endfor %}
{% if edit_error and editing_entry_id == item.id %}
{{ edit_error }}
{% endif %}
{% endfor %}
{% else %}
이 날 작성한 기록이 없어요.
{% endif %}