diff --git a/bookwyrm/templates/book/suggestion_list/list.html b/bookwyrm/templates/book/suggestion_list/list.html index 635d5d93b..805fa43a6 100644 --- a/bookwyrm/templates/book/suggestion_list/list.html +++ b/bookwyrm/templates/book/suggestion_list/list.html @@ -3,16 +3,16 @@
+ {% blocktrans trimmed with title=book.title %} + Readers who liked {{ title }} recommend giving these books a try: + {% endblocktrans %} +
+ {% with book.suggestion_list.listitem_set.all|slice:3 as items %} {% if items|length == 0 %} @@ -22,16 +22,22 @@ {% else %} + + {% blocktrans trimmed with count=book.suggestion_list.listitem_set.count|intcomma %} + View all {{ count }} suggestions + {% endblocktrans %} +