diff options
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html index 4e6998d..bac87d2 100644 --- a/templates/index.html +++ b/templates/index.html @@ -28,7 +28,10 @@ <table> <tr> <th>Title</th> + <th>Author</th> + {% if show_path %} <th>Path</th> + {% endif %} <th>Tracks</th> <th>Duration</th> <th>Size</th> @@ -36,7 +39,10 @@ {% for b, v in books.items() %} <tr> <td><a href="{{'?a=' if not static else '/'}}{{ b }}{{'.xml' if static}}">{{ v['title']|escape }}</a></td> + <td>{{ v['author'] }}</td> + {% if show_path %} <td>{{ v['path']|escape }}</td> + {% endif %} <td>{{ v['files']|length }}</td> <td>{{ v['duration_str'] }}</td> <td>{{ v['size_str'] }}</td> |