diff options
-rw-r--r-- | templates/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/index.html b/templates/index.html index c05ff8e..dc0eddd 100644 --- a/templates/index.html +++ b/templates/index.html @@ -28,7 +28,7 @@ <table> <tr> <th>Title</th> - <th>Path</th> + <th>Author</th> <th>Tracks</th> <th>Duration</th> <th>Size</th> @@ -36,7 +36,7 @@ {% for b, v in books.items() %} <tr> <td><a href="?a={{ b }}">{{ v['title']|escape }}</a></td> - <td>{{ v['path']|escape }}</td> + <td>{{ v['author']|escape }}</td> <td>{{ v['files']|length }}</td> <td>{{ v['duration_str'] }}</td> <td>{{ v['size_str'] }}</td> |