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