From 8313692e3b32aa6a9a87b4640a03adf9ddba6c3c Mon Sep 17 00:00:00 2001 From: TheJoeCoder <joe@radialbog9.uk> Date: Fri, 23 Aug 2024 15:43:49 +0100 Subject: [PATCH] Private books you can access --- reader/templates/reader/browse.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/reader/templates/reader/browse.html b/reader/templates/reader/browse.html index 0ffb7b6..fc76be3 100644 --- a/reader/templates/reader/browse.html +++ b/reader/templates/reader/browse.html @@ -12,5 +12,11 @@ </p> </div> <br> + <h2 class="subtitle">Public Books</h2> {% include "reader/book_list_widget.html" with books=books %} + + {% if books_private %} + <h2 class="subtitle">Private Books You Can Access</h2> + {% include "reader/book_list_widget.html" with books=books_private %} + {% endif %} {% endblock %} \ No newline at end of file -- GitLab