23 lines
435 B
HTML
23 lines
435 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Play</title>
|
|
<script>
|
|
function play(hash) {
|
|
fetch("/play/" + hash);
|
|
}
|
|
|
|
function stop() {
|
|
fetch("/stop");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
{% for clip in clips %}
|
|
<button onclick="play('{{clip.hash}}')">{{clip.file_name}}</button><br />
|
|
{% endfor %}
|
|
|
|
<button onclick="stop()">Stop.</button>
|
|
</body>
|
|
</html>
|