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 %}