projekt/templates/dashboard.html

52 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Behavior Assessment Dashboard</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Behavior Assessment Dashboard</h1>
<div class="filters">
<!-- Wybór roli -->
<label for="role">Select Role:</label>
<select id="role">
<option value="teacher">Teacher</option>
<option value="homeroom_teacher">Homeroom Teacher</option>
<option value="principal">Principal</option>
<option value="student">Student (Self-Assessment)</option>
</select>
<!-- Wybór osoby -->
<label for="person">Select Person:</label>
<select id="person">
<!-- Osoby będą generowane dynamicznie na podstawie roli -->
</select>
<!-- Wybór kategorii -->
<label for="category">Select Category:</label>
<select id="category">
<!-- Kategorie będą generowane dynamicznie na podstawie roli -->
</select>
</div>
<h2>Criteria Table</h2>
<table id="criteria-table">
<thead>
<tr>
<th>Student</th>
<!-- Nagłówki dla kryteriów zostaną dodane dynamicznie -->
</tr>
</thead>
<tbody>
<!-- Wiersze uczniów i kryteriów zostaną dodane dynamicznie -->
</tbody>
</table>
<script src="app.js"></script>
</body>
</html>