startup page seting
This commit is contained in:
15
templates/player_page.html
Normal file
15
templates/player_page.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Player Schedule</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Player Schedule</h1>
|
||||
<ul>
|
||||
{% for item in schedule %}
|
||||
<li>{{ item.file }} - {{ item.duration }} seconds</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<a href="{{ url_for('dashboard') }}">Back to Dashboard</a>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user