{% extends "layouts/main.html" %} {% block title %}{{ t(key="board.title", default="게시판") }} — FuzionX{% endblock %} {% block content %}
{% for post in posts %} {% if post.thumbUrl %}
{{ post.title }}
{% endif %}

{% if post.status == "processing" %}🔄 {{ t(key="board.processing", default="처리중") }} {% endif %}{{ post.title }}

{{ post.user_name | default(value="-") }} {{ post.created_at }}
{% endfor %} {% if not posts or posts | length == 0 %}
{{ t(key="board.empty", default="게시글이 없습니다.") }}
{% endif %}
{% set baseUrl = "/board" %} {% include "partials/pagination.html" %}
{# processing 게시글이 있으면 REST 폴링으로 상태 확인 #} {% endblock %}