diff --git a/CalibreWebCompanion/library/templates/base.html b/CalibreWebCompanion/library/templates/base.html
index 1dbb70d..e0ff2e6 100644
--- a/CalibreWebCompanion/library/templates/base.html
+++ b/CalibreWebCompanion/library/templates/base.html
@@ -14,6 +14,16 @@
@@ -108,7 +122,8 @@
{% for pub in unique_publishers %}
- - {{pub}} ({{pub.num_books}})
+
+ - {{pub}}
{{pub.num_books}}
{% endfor %}
diff --git a/CalibreWebCompanion/library/templates/library/book_list.html b/CalibreWebCompanion/library/templates/library/book_list.html
index 0750391..3f90df0 100644
--- a/CalibreWebCompanion/library/templates/library/book_list.html
+++ b/CalibreWebCompanion/library/templates/library/book_list.html
@@ -2,42 +2,67 @@
{% block content %}
+
+
Book List
-
-
-
-
-
-
- Title |
- Author |
- Rating |
- Tags |
- Added |
- Published |
-
- {% for book in book_list %}
-
- {{ book.title }} |
- {{book.author_sort}} |
- {% for rating in book.ratings.all %}
- {{rating}}
+
+
+
+
+
+
+ Title |
+ Author |
+ Rating |
+ Tags |
+ Added |
+ Published |
+
+ {% for book in book_list %}
+
+ {{ book.title }} |
+ {{book.author_sort}} |
+ {% for rating in book.ratings.all %}
+ {{rating}}
+ {% endfor %}
+ |
+
+
+ {% for tag in book.tags.all %}
+ {{tag}}
+ {% endfor %}
+ |
+ {{book.timestamp | date:"d/m/Y" }} |
+ {{book.pubdate.year}} |
+
{% endfor %}
-
-
- {% for tag in book.tags.all %}
- {{tag}},
- {% endfor %}
- |
- {{book.timestamp | timesince}} ago |
- {{book.pubdate.year}} |
-
- {% endfor %}
-
-
-
-
+ |
+
+
+
-{% endblock %}
\ No newline at end of file
+ {% endblock %}
\ No newline at end of file