Files
ai_platform/views/mgmt_perf_embed.ejs
dsyoon 90358f05a7 feat(mgmt-perf): 업로드 영역 하단 배치, 업로드 삭제 API, 앱 내 밝은 배경
- 대시보드 조회를 위·엑셀 업로드를 아래로 재배치
- DELETE /api/mgmt-perf/upload/:id 및 최근 업로드 행 삭제 버튼
- dashboard.css 전역 body 어두운 배경을 body.mgmt-perf-standalone로 한정, 임베드는 투명
- mgmt_perf_embed에 standalone 클래스 유지

Made-with: Cursor
2026-04-13 19:43:57 +09:00

18 lines
661 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="/mgmt-perf/chart.umd.min.js"></script>
</head>
<body class="mgmt-perf-standalone">
<div class="mgmt-perf-embed">
<%- include('partials/mgmt_perf_dashboard_container', { dashboardTitle, quarterLabel }) %>
</div>
<script type="application/json" id="mgmt-perf-payload-json"><%- payloadJson %></script>
<script src="/mgmt-perf/dashboard-app.js"></script>
</body>
</html>