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