{# -*- mode: html -*- #} {# reason to not use the CSSDIR its because introduces a relative path #} {# not an absolute, so when its included on docthemes, its tried to include the css #} {# from a wrong path instead of the right one #}
x
{% if SERIES_INFO.status == 'obsolete' %}

This release is no longer supported by the community. The current supported release is {{RELEASED_SERIES.capitalize()}}.

{% elif SERIES_INFO.status == 'EOL' %}

This release is no longer supported by the community. The current supported release is {{RELEASED_SERIES.capitalize()}}.

{% elif SERIES == RELEASED_SERIES %}

This is the current supported release.

{% elif SERIES_INFO.status == 'maintained' %}

This is maintained, but not the current release. The current supported release is {{RELEASED_SERIES.capitalize()}}.

{% elif SERIES_INFO.status == 'development' %}

This release is under development. The current supported release is {{RELEASED_SERIES.capitalize()}}.

{% endif %}  Back to Top