{% if settings.general.base_url == None %}
{% set base_url = "/" %}
{% else %}
{% set base_url = settings.general.base_url %}
{% endif %}
Proxy settings
Security Settings
Integration settings
Path Mappings For TV Shows
{% if settings.general.path_mappings != None %}
{% set path_substitutions = ast.literal_eval(settings.general.path_mappings) %}
{% else %}
{% set path_substitutions = [] %}
{% endif %}
Path for Sonarr:
Path for Bazarr:
{% for x in range(0, 5) %}
{% set path = [] %}
{% if path_substitutions[x] %}
{% set path = path_substitutions[x] %}
{% else %}
{% set path = ["", ""] %}
{% endif %}
{% endfor %}
Path Mappings For Movies
{% if settings.general.path_mappings_movie != None %}
{% set path_substitutions_movie = ast.literal_eval(settings.general.path_mappings_movie) %}
{% else %}
{% set path_substitutions_movie = [] %}
{% endif %}
Path for Radarr:
Path for Bazarr:
{% for x in range(0, 5) %}
{% set path_movie = [] %}
{% if path_substitutions_movie[x] %}
{% set path_movie = path_substitutions_movie[x] %}
{% else %}
{% set path_movie = ["", ""] %}
{% endif %}
{% endfor %}
Post-processing
Be aware that the execution of post-processing command will prevent the user interface from being accessible
until completion, when downloading subtitles in interactive mode (meaning you'll see a loader during
post-processing).
{{directory}}
The full path of the episode file parent directory.
{{episode}}
The full path of the episode file.
{{episode_name}}
The filename of the episode without parent directory or extension.
The 3-letter ISO-639 language code of the subtitles language.
Updates
Analytics
Send anonymous usage information, nothing that can identify you. This includes information on which
providers you use, what languages you search for, Bazarr, Python, Sonarr, Radarr and what OS version you
are using. We will use this information to prioritize features and bug fixes. Please, keep this enabled
as this is the only way we have to better understand how you use Bazarr.