2022-11-15 20:46:50 +01:00
|
|
|
{% if versions %}
|
2023-06-10 08:08:07 +02:00
|
|
|
<h3>{{ _('Doc Versions') }}</h3>
|
2022-11-15 20:46:50 +01:00
|
|
|
<ul>
|
2023-06-10 08:08:07 +02:00
|
|
|
{% for item in versions %}
|
|
|
|
|
<li><a href="{{ item.url }}">{{ item.release }} ({{ item.name }} branch)</a></li>
|
2022-11-15 20:46:50 +01:00
|
|
|
{%- endfor %}
|
2022-11-15 21:24:35 +01:00
|
|
|
{% if legacy_versions %} <ul>
|
|
|
|
|
{%- for item in legacy_versions %}
|
2023-06-10 08:08:07 +02:00
|
|
|
<li><a href="{{ item.url }}">{{ item.release }} ({{ item.name }} branch)</a></li>
|
|
|
|
|
{% endfor %}
|
2022-11-15 21:24:35 +01:00
|
|
|
{% endif %}
|
2022-11-15 20:46:50 +01:00
|
|
|
</ul>
|
|
|
|
|
{% endif %}
|