From 353be7917dff405580faada1ff6b8de5370ddb71 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 9 Apr 2024 15:53:03 -0400 Subject: [PATCH] show work title in ui --- catalog/templates/work.html | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/catalog/templates/work.html b/catalog/templates/work.html index bcf2eba9..81242829 100644 --- a/catalog/templates/work.html +++ b/catalog/templates/work.html @@ -10,7 +10,17 @@ {% load strip_scheme %} {% load thumb %} -{% block details %}{% endblock %} +{% block details %} +
+ {% if item.other_title %} + {% trans '又名:' %} + {% for t in item.other_title %} + {{ t }} + {% if not forloop.last %}/{% endif %} + {% endfor %} + {% endif %} +
+{% endblock %} {% block left_sidebar %}{% endblock %} {% block sidebar %}{% endblock %}