Files
pulp-console/app/templates/dashboard.html
Hyemin Lee 15bb0994be style: mono data font, compact actions, polish, favicon; slow status poll to 30s
- JetBrains Mono(로컬 동봉) → 저장소명/버전/패키지수/시각 등 영문·숫자 데이터에 적용
- 동기화/배포 버튼 컴팩트(btn-sm) + 액션 셀 높이 고정(row-action)으로 행 점프 제거
- 표 행 높이/hover, 요약 카드 강조(동기화중=blue, GPG통과=mint) + hover, 버튼 누름 피드백
- 연결 상태 폴링 10s → 30s
- SVG favicon (Toss blue 라운드 사각 + 스냅샷 레이어)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-17 13:53:49 +09:00

22 lines
602 B
HTML

{% extends "base.html" %}
{% block content %}
<section>
<h2>상태</h2>
<!-- 로드 시 1회 + 10초마다 Pulp 연결 상태 폴링 -->
<div hx-get="/pulp-status" hx-trigger="load, every 30s" hx-swap="innerHTML" style="margin-top:12px;">
<span class="status-line status-loading">연결 확인 중…</span>
</div>
</section>
<section>
<div class="section-head">
<h2>저장소</h2>
<button hx-get="/repos" hx-target="#repo-list" hx-swap="outerHTML" class="secondary">
새로고침
</button>
</div>
{% include "partials/repo_list.html" %}
</section>
{% endblock %}