aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 52217831fc4547711c7e3f8f71ec0831a44e27a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
    <title>Audiobooks</title>
    <meta charset="utf-8">
    <link href="static/bootstrap.min.css" rel="stylesheet">
</head>
<body>
    <div class="container">
    <h2>Audiobooks</h2>
    <table class="table table-condensed">
        <tr>
            <th>Title</th>
            <th>Path</th>
            <th>Tracks</th>
            <th>Duration</th>
            <th>Size</th>
        </tr>
        {% for b, v in books.items() %}
        <tr>
            <td><a href="?a={{ b }}">{{ v['title']|escape }}</a></td>
            <td>{{ v['path']|escape }}</td>
            <td>{{ v['files']|length }}</td>
            <td>{{ v['duration_str'] }}</td>
            <td>{{ v['size_str'] }}</td>
        </tr>
        {% endfor %}
    </table>
    </div>
</body>
</html>