diff options
author | Jordan <me@jordan.im> | 2020-06-10 17:40:05 -0700 |
---|---|---|
committer | Jordan <me@jordan.im> | 2020-06-10 17:40:05 -0700 |
commit | e4849a8caac88bdbfb883c8e0b071fb0d5a6d898 (patch) | |
tree | ad5905eb55fb57f911a3f8167c593684fcc11742 | |
parent | 01ddb0b13d2ab2039c1a615bbf3ee08f80a44e5b (diff) | |
download | roka-e4849a8caac88bdbfb883c8e0b071fb0d5a6d898.tar.gz roka-e4849a8caac88bdbfb883c8e0b071fb0d5a6d898.zip |
rm path from index table, table format
-rw-r--r-- | templates/index.html | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/templates/index.html b/templates/index.html index 5221783..ebd8bfa 100644 --- a/templates/index.html +++ b/templates/index.html @@ -6,12 +6,11 @@ <link href="static/bootstrap.min.css" rel="stylesheet"> </head> <body> - <div class="container"> + <div class="container container-fluid"> <h2>Audiobooks</h2> - <table class="table table-condensed"> + <table class="table table-condensed table-bordered table-striped"> <tr> <th>Title</th> - <th>Path</th> <th>Tracks</th> <th>Duration</th> <th>Size</th> @@ -19,7 +18,6 @@ {% 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> |