{# Copyright (c) 2021 Julien Floret #} {# Copyright (c) 2021 Robin Jarry #} {# SPDX-License-Identifier: BSD-3-Clause #} {% extends "base.html" %} {% block breadcrumbs %} {{breadcrumbs(['products'])}} {% endblock %} {% block page_content %} {% set width = products|map(attribute='name')|map('length')|max|default(80) %} {% set width = [width, 20]|max %}
{% for product in products|sort(attribute="name") %}
icon {{product.name}}
{% endfor %}
{% endblock %}