mirror of
https://github.com/morpheus65535/bazarr
synced 2025-01-30 19:02:34 +00:00
Continuing development.
This commit is contained in:
parent
679a76b476
commit
35401537d7
1 changed files with 3 additions and 3 deletions
|
@ -197,14 +197,14 @@
|
|||
%end
|
||||
%try:
|
||||
%for language in actual_languages:
|
||||
%if len(language) > 2:
|
||||
% forced = language[2]
|
||||
%if language[0].endswith(':forced'):
|
||||
% forced = True
|
||||
%else:
|
||||
% forced = False
|
||||
%end
|
||||
%if language[1] is not None:
|
||||
<a data-episodePath="{{episode[1]}}" data-subtitlesPath="{{path_replace(language[1])}}" data-language="{{alpha3_from_alpha2(str(language[0]))}}" data-sonarrSeriesId={{episode[5]}} data-sonarrEpisodeId={{episode[7]}} class="remove_subtitles ui tiny label">
|
||||
{{!'<span class="ui" data-tooltip="Forced" data-inverted=""><i class="exclamation icon"></i></span>' if forced else ''}}{{language[0]}}
|
||||
{{!'<span class="ui" data-tooltip="Forced" data-inverted=""><i class="exclamation icon"></i></span>' if forced else ''}}{{language[0].split(':')[0]}}
|
||||
<i class="delete icon"></i>
|
||||
</a>
|
||||
%else:
|
||||
|
|
Loading…
Reference in a new issue