- mgmt_perf_uploads / mgmt_perf_snapshots 스키마 - POST /api/mgmt-perf/upload, 기본 페이로드 data/mgmt-perf-default-payload.json - 대시보드 페이지: 업로드 영역 + iframe embed - public/mgmt-perf: 원본 HTML 기반 CSS·dashboard-app.js - xlsx 미설치 시 기본 페이로드+메타만 저장 Made-with: Cursor
16 lines
625 B
Plaintext
16 lines
625 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title><%= dashboardTitle %></title>
|
|
<link rel="stylesheet" href="/mgmt-perf/dashboard.css" />
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.5.1/dist/chart.umd.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<%- include('partials/mgmt_perf_dashboard_container', { dashboardTitle, quarterLabel }) %>
|
|
<script type="application/json" id="mgmt-perf-payload-json"><%- payloadJson %></script>
|
|
<script src="/mgmt-perf/dashboard-app.js"></script>
|
|
</body>
|
|
</html>
|