stcoats
Initial FastAPI + DuckDB frontend app
756e034
raw
history blame
849 Bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>YCSEP Viewer</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link rel="stylesheet" href="https://cdn.datatables.net/1.13.5/css/jquery.dataTables.min.css">
<script src="https://cdn.datatables.net/1.13.5/js/jquery.dataTables.min.js"></script>
<script src="js/app.js"></script>
</head>
<body>
<h2>YCSEP Audio Dataset Viewer</h2>
<input type="text" id="searchBox" placeholder="Search text..." style="width:300px; margin-bottom:10px;">
<table id="resultsTable" class="display" style="width:100%">
<thead>
<tr>
<th>ID</th><th>Channel</th><th>Video ID</th><th>Speaker</th><th>Start</th><th>End</th><th>Upload Date</th><th>Text</th><th>POS</th><th>Audio</th>
</tr>
</thead>
<tbody></tbody>
</table>
</body>
</html>