2019-08-27 09:10:54 +02:00
{% extends "!layout.html" %}
2021-06-30 22:34:12 +02:00
2019-08-27 09:10:54 +02:00
{% block document %}
2019-11-16 09:26:28 +01:00
{#
2019-08-27 09:10:54 +02:00
# This allows us to insert a warning that appears only on the development
# version e.g. to say that something is likely to have changed.
# For more info see: https://www.sphinx-doc.org/en/master/templating.html
2019-11-16 09:26:28 +01:00
#}
2024-02-16 23:07:19 +01:00
{% if pagename in ["production/system-configuration", "production/reverse-proxies"] and release.endswith('+git') %}
2019-11-16 09:26:28 +01:00
{#
# This page doesn't exist in the stable documentation yet.
2021-03-15 18:37:12 +01:00
# This temporary workaround prevents test failures and should be removed after the next release.
2019-11-16 09:26:28 +01:00
#}
2019-08-27 09:10:54 +02:00
< div class = "admonition warning" >
< p class = "first admonition-title" > Warning< / p >
2023-04-20 16:23:09 +02:00
< p class = "last" > You are reading a < strong > development version< / strong > of the Zulip documentation. These instructions may contain changes that are not yet present in a supported Zulip Server release.
2019-10-15 22:53:25 +02:00
See < a class = "reference external" href = "https://zulip.readthedocs.io/en/stable/production/" > documentation for the latest stable release< / a > .< / p >
2019-08-27 09:10:54 +02:00
< / div >
{% elif pagename.split("/")[0] == "production" and release.endswith('+git') %}
< div class = "admonition warning" >
< p class = "first admonition-title" > Warning< / p >
2023-04-20 16:23:09 +02:00
< p class = "last" > You are reading a < strong > development version< / strong > of the Zulip documentation. These instructions may contain changes that are not yet present in a supported Zulip Server release.
2019-08-27 09:10:54 +02:00
See < a class = "reference external" href = "https://zulip.readthedocs.io/en/stable/{{ pagename }}.html" > documentation for the latest stable release< / a > .< / p >
< / div >
{% endif %}
{{ super() }}
{% endblock %}