bazarr/libs/flask_restx/templates/swagger-ui-libs.html

12 lines
478 B
HTML

{#
{% if config.SWAGGER_UI_LANGUAGES %}
<script src="{{ swagger_static('lang/translator.js') }}" type='text/javascript'></script>
{% for lang in config.SWAGGER_UI_LANGUAGES %}
{% set filename = 'lang/{0}.js'.format(lang) %}
<script src="{{ swagger_static(filename) }}" type='text/javascript'></script>
{% endfor%}
{% endif %}
#}
<script src="{{ swagger_static('swagger-ui-bundle.js') }}"></script>
<script src="{{ swagger_static('swagger-ui-standalone-preset.js') }}"></script>