From d77b52af9631ca9f5727097126940932420e8c16 Mon Sep 17 00:00:00 2001 From: Niktia Pchelin Date: Sun, 16 Feb 2020 22:24:00 -0500 Subject: [PATCH] #645 - displays '(public)' next to public shelves created by the user --- cps/templates/layout.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cps/templates/layout.html b/cps/templates/layout.html index 9ffb04f8..84785205 100644 --- a/cps/templates/layout.html +++ b/cps/templates/layout.html @@ -140,7 +140,7 @@ {% endfor %} {% for shelf in g.user.shelf %} -
  • {{shelf.name|shortentitle(40)}}
  • +
  • {{shelf.name|shortentitle(40)}}{% if shelf.is_public == 1 %} (public){% endif %}
  • {% endfor %} {% if not g.user.is_anonymous %}