mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 18:48:51 +02:00
22 lines
768 B
HTML
22 lines
768 B
HTML
{% extends "!page.html" %}
|
|
{% block body %}
|
|
{% if current_version and latest_version and current_version != latest_version %}
|
|
<!--
|
|
~ @copyright Copyright (C) 2010-2022 Combodo SARL
|
|
~ @license http://opensource.org/licenses/AGPL-3.0
|
|
-->
|
|
|
|
<p>
|
|
<strong>
|
|
{% if current_version.is_released %}
|
|
You're reading an old version of this documentation.
|
|
If you want up-to-date information, please have a look at <a href="{{ vpathto(latest_version.name) }}">{{latest_version.name}}</a>.
|
|
{% else %}
|
|
You're reading the documentation for a development version.
|
|
For the latest released version, please have a look at <a href="{{ vpathto(latest_version.name) }}">{{latest_version.name}}</a>.
|
|
{% endif %}
|
|
</strong>
|
|
</p>
|
|
{% endif %}
|
|
{{ super() }}
|
|
{% endblock %}% |