{% block stylesheet %}
{% endblock %}
{# json_encode(65) is for JSON_UNESCAPED_SLASHES|JSON_HEX_TAG to avoid JS XSS #}
{% if showWebby %}
{% endif %}
Other API docs:
{% set active_ui = app.request.get('ui', 'swagger_ui') %}
{% if swaggerUiEnabled and active_ui != 'swagger_ui' %}Swagger UI{% endif %}
{% if reDocEnabled and active_ui != 're_doc' %}ReDoc{% endif %}
{% block javascript %}
{% if (reDocEnabled and not swaggerUiEnabled) or (reDocEnabled and 're_doc' == active_ui) %}
{% elseif (swaggerUiEnabled) %}
{% endif %}
{% endblock %}