corp-university-dashboard/index.html

66 lines
3.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Корпоративный университет — Дашборд</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Корпоративный университет</h1>
<p>Управленческий дашборд развития персонала</p>
</header>
<main>
<section class="upload-section" id="uploadSection">
<div class="upload-box">
<div class="upload-icon">📊</div>
<h2>Загрузите Excel-файл</h2>
<p>Столбцы файла: ФИО, Дивизион, Тема курса, Статус, Оценка, Тренер</p>
<input type="file" id="excelFile" accept=".xlsx,.xls,.csv" hidden>
<button id="uploadBtn">Выбрать файл</button>
<p class="hint" id="statusMsg"></p>
</div>
</section>
<section id="dashboard" class="dashboard hidden">
<div class="stats-row">
<div class="stat-card"><div class="stat-value" id="statTotal">0</div><div class="stat-label">Сотрудников</div></div>
<div class="stat-card"><div class="stat-value" id="statAvg"></div><div class="stat-label">Средняя оценка</div></div>
</div>
<div class="table-card wide">
<h3>📋 Нагрузка тренеров (ФИО + тренинги + частота)</h3>
<table id="tblTrainers"><thead><tr>
<th>ФИО тренера</th><th>Проведено тренингов</th><th>Частота (темы)</th><th>Всего обучено</th>
</tr></thead><tbody></tbody></table>
</div>
<div class="table-card wide">
<h3>📋 Детализация по тренингам</h3>
<table id="tblTrainings"><thead><tr>
<th>Тренинг</th><th>Прошли</th><th>Не прошли</th><th>%</th><th>Оценка</th><th>Тренер</th>
</tr></thead><tbody></tbody></table>
</div>
<div class="charts-row">
<div class="table-card"><h3>🏆 Чемпионы</h3><table id="tblChamp"><thead><tr><th>ФИО</th><th>Дивизион</th><th>Курсов</th></tr></thead><tbody></tbody></table></div>
<div class="table-card"><h3>⚠️ Без обучения</h3><table id="tblNoTrain"><thead><tr><th>ФИО</th><th>Дивизион</th></tr></thead><tbody></tbody></table></div>
</div>
<div class="table-card wide">
<h3>Все записи</h3>
<table id="tblAll"><thead><tr>
<th>ФИО</th><th>Дивизион</th><th>Тема курса</th><th>Статус</th><th>Оценка</th><th>Тренер</th>
</tr></thead><tbody></tbody></table>
</div>
</section>
</main>
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.0/dist/chart.umd.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.18.5/xlsx.full.min.js"></script>
<script src="app.js"></script>
</body>
</html>