From 25cb2ae319c1f5b2e21fd9c599bc40eed3bcfde2 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Thu, 1 Dec 2022 23:58:13 +0100 Subject: [PATCH] Fixed missing default section template for news subsections Signed-off-by: Alexander Borsuk --- templates/section.html | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 templates/section.html diff --git a/templates/section.html b/templates/section.html new file mode 100644 index 00000000..2f4826e6 --- /dev/null +++ b/templates/section.html @@ -0,0 +1,24 @@ +{% extends 'base.html' %} +{% block content %} + +

{{ resource.title }}

+{# Iterate and use en sections by default and use localized versions only if they are present #} +{% set enNewsSectionTranslation = section.translations | filter(attribute='lang', value='en') | first %} +{% set enNewsSection = get_section(path=enNewsSectionTranslation.path) %} +{% for page in section.pages %} +{% set translatedPage = page.translations | filter(attribute='lang', value=lang) | first %} +{% if translatedPage %} + {% set page = get_page(path=translatedPage.path) %} +{% endif %} + +
+{% if page.content %} +
{{ page.content | safe }}
+{% endif %} +{% for photo in page.assets %} + +{% endfor %} +
+{% endfor %} + +{% endblock content %}