Saving settings...
% include('menu.tpl')

Some fields are in error and you can't save settings until you have corrected them. Be sure to check in every tabs.

Start-Up
%if settings.general.base_url is None: % base_url = "/" %else: % base_url = settings.general.base_url %end
Proxy settings
Security settings
Integration settings
Path Mappings for shows
%import ast %if settings.general.path_mappings is not None: % path_substitutions = ast.literal_eval(settings.general.path_mappings) %else: % path_substitutions = [] %end

Path for Sonarr:

Path for Bazarr:

%for x in range(0, 5): % path = [] % try: % path = path_substitutions[x] % except IndexError: % path = ["", ""] % end
%end
Path Mappings for movies
%import ast %if settings.general.path_mappings_movie is not None: % path_substitutions_movie = ast.literal_eval(settings.general.path_mappings_movie) %else: % path_substitutions_movie = [] %end

Path for Radarr:

Path for Bazarr:

%for x in range(0, 5): % path_movie = [] % try: % path_movie = path_substitutions_movie[x] % except IndexError: % path_movie = ["", ""] % end
%end
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.
{{subtitles}}
The full path of the subtitles file.
{{subtitles_language}}
The language of the subtitles file.
{{subtitles_language_code2}}
The 2-letter ISO-639 language code of the subtitles language.
{{subtitles_language_code3}}
The 3-letter ISO-639 language code of the subtitles language.
Updates
Connection settings
Synchronization
Connection settings
Synchronization



Thanks to Diaoul for his work on Subliminal on which Bazarr is based.

Subtitles options
Subtitles providers
Subtitles languages
Series default settings
Movies default settings
Notifications settings

Thanks to caronc for his work on apprise on which is based the notifications system.

Please follow instructions on his wiki to configure your notifications providers.

%for notifier in settings_notifier:
Test Notification
%end
% include('footer.tpl')