Loading...

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

General
General settings
Subliminal
Subliminal settings
Sonarr
Sonarr settings
Radarr
Radarr settings
Start-Up
%if settings_general[2] == None: % base_url = "/" %else: % base_url = settings_general[2] %end
Path Mappings for shows
%import ast %if settings_general[3] is not None: % path_substitutions = ast.literal_eval(settings_general[3]) %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[14] is not None: % path_substitutions_movie = ast.literal_eval(settings_general[14]) %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
Subtitles providers

Be aware that the more providers you enable, the longer it will take everytime you search for a subtitles.

Subtitles languages
Series default settings
Movies default settings
Connection settings
Connection settings
% include('footer.tpl')