{% extends "base.html" %} {% block content %}
24h posts
{{ data.posts_24h }}
Total posts
{{ data.posts_total }}
Queue
{{ data.queue_size }}
Failed
{{ data.failed_topics }}
Daemon
{% if daemon.running %} running {% else %} stopped {% endif %} {% if daemon.pipeline_locked %} pipeline in progress {% endif %}
last run: {{ daemon.last_run_at or '—' }} · interval: {{ settings.min_interval_seconds // 3600 }}h–{{ settings.max_interval_seconds // 3600 }}h · auto-publish: {{ 'on' if settings.auto_publish else 'off' }} · git-push: {{ 'on' if settings.git_push else 'off' }}

새 포스트 바로 발행

→ pipeline monitor
제목을 비우고 실행하면 큐에서 가장 높은 점수의 미발행 토픽이 자동 선택됩니다. 또는 Topics 페이지에서 개별 선택.

Recent runs

{% if data.runs_recent %} {% for r in data.runs_recent %} {% endfor %}
#triggerstagestatusslugstarted
{{ r.id }} {{ r.trigger }} {{ r.stage or '—' }} {% if r.status == 'success' %} success {% elif r.status == 'failed' %} failed {% else %} {{ r.status }} {% endif %} {{ r.final_slug or '—' }} {{ r.started_at }}
{% else %}
아직 실행 기록이 없습니다.
{% endif %}
{% endblock %}