1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-02-22 22:10:42 +00:00
bazarr/libs/flask_restx/templates/swagger-ui-libs.html
2022-09-21 23:51:34 -04:00

11 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>