From ef878c317f8aa33b5fdd92417a12e1385454e86e Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Fri, 15 Dec 2023 18:03:55 +0100 Subject: 🐛 Sheets - only display the first five updated imports links (refs #5680) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../templates/ishtar/blocks/sheet_creation_section.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ishtar_common/templates') diff --git a/ishtar_common/templates/ishtar/blocks/sheet_creation_section.html b/ishtar_common/templates/ishtar/blocks/sheet_creation_section.html index fc969bb17..f23561afa 100644 --- a/ishtar_common/templates/ishtar/blocks/sheet_creation_section.html +++ b/ishtar_common/templates/ishtar/blocks/sheet_creation_section.html @@ -21,19 +21,19 @@ {% if get_import_list %}
{% trans "Imports (creation)" %}
-
{% for imprt in get_import_list %}{% if loop.counter %} ; {% endif %} - +
{% for imprt in get_import_list %}{% if forloop.counter0 %} ; {% endif %} + {% if imprt.get_show_url %} - {{imprt}}{% endfor %}
+ {% endif %} {{imprt}}{% endfor %}
{% endif %} {% if get_import_updated %}
{% trans "Imports (update)" %}
-
{% for imprt in get_import_updated %}{% if loop.counter %} ; {% endif %} - +
{% for imprt in get_import_updated %}{% if forloop.counter0 %} ; {% endif %} + {% if imprt.get_show_url %} - {{imprt}}{% endfor %}
+ {% endif %} {{imprt}}{% endfor %}
{% endif %} {% endif %} -- cgit v1.2.3