From d10968a6693dfe7b429fd2d3b41e33d812796c9c Mon Sep 17 00:00:00 2001 From: Zankaria Date: Thu, 24 Apr 2025 14:07:47 +0200 Subject: [PATCH] page.html: add support for multiple subtitles --- templates/page.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/templates/page.html b/templates/page.html index b6203a61..75cb4939 100644 --- a/templates/page.html +++ b/templates/page.html @@ -16,7 +16,13 @@

{{ title }}

{% if subtitle %} - {{ subtitle }} + {% if subtitle is iterable %} + {% for s in subtitle %} + {{ s }}{% if not loop.last %}
{% endif %} + {% endfor %} + {% else %} + {{ subtitle }} + {% endif %} {% endif %} {% if mod and not hide_dashboard_link %}

{% trans %}Return to dashboard{% endtrans %}

{% endif %}