Merge pull request #563 from UnhealthyKraken/patch-12

Update movies.tpl
This commit is contained in:
morpheus65535 2019-09-17 11:37:37 -04:00 committed by GitHub
commit 1333536956
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 10 deletions

View File

@ -58,9 +58,9 @@
<th></th> <th></th>
<th>Name</th> <th>Name</th>
<th>Path</th> <th>Path</th>
<th>Audio<br>language</th> <th>Audio<br>Language</th>
<th>Subtitles<br>languages</th> <th>Subtitles<br>Languages</th>
<th>Hearing-<br>impaired</th> <th>Hearing-<br>Impaired</th>
<th>Forced</th> <th>Forced</th>
<th></th> <th></th>
</tr> </tr>
@ -87,7 +87,7 @@
%if os.path.isfile(row.path): %if os.path.isfile(row.path):
<span data-tooltip="This path seems to be valid." data-inverted="" data-position="top left"><i class="checkmark icon"></i></span> <span data-tooltip="This path seems to be valid." data-inverted="" data-position="top left"><i class="checkmark icon"></i></span>
%else: %else:
<span data-tooltip="This path doesn't seems to be valid." data-inverted="" data-position="top left"><i class="warning sign icon"></i></span> <span data-tooltip="This path doesn't seem to be valid." data-inverted="" data-position="top left"><i class="warning sign icon"></i></span>
%end %end
{{row.path}} {{row.path}}
</td> </td>
@ -111,7 +111,7 @@
end end
end end
%> %>
<div class="config ui inverted basic compact icon" data-tooltip="Edit movies" data-inverted="" data-position="top right" data-no="{{row.radarr_id}}" data-title="{{row.title}}" data-poster="{{row.poster}}" data-languages="{{!subs_languages_list}}" data-forced="{{row.forced}}" data-hearing-impaired="{{row.hearing_impaired}}" data-audio="{{row.audio_language}}"> <div class="config ui inverted basic compact icon" data-tooltip="Edit Movie" data-inverted="" data-position="top right" data-no="{{row.radarr_id}}" data-title="{{row.title}}" data-poster="{{row.poster}}" data-languages="{{!subs_languages_list}}" data-forced="{{row.forced}}" data-hearing-impaired="{{row.hearing_impaired}}" data-audio="{{row.audio_language}}">
<i class="ui black configure icon"></i> <i class="ui black configure icon"></i>
</div> </div>
</td> </td>
@ -149,7 +149,7 @@
%end %end
fast forward icon"></i> fast forward icon"></i>
</div> </div>
<div class="right floated right aligned column">Total records: {{missing_count}}</div> <div class="right floated right aligned column">Total Records: {{missing_count}}</div>
</div> </div>
</div> </div>
%end %end
@ -170,7 +170,7 @@
<div class="ui grid"> <div class="ui grid">
<div class="middle aligned row"> <div class="middle aligned row">
<div class="right aligned five wide column"> <div class="right aligned five wide column">
<label>Audio language</label> <label>Audio Language</label>
</div> </div>
<div class="nine wide column"> <div class="nine wide column">
<div id="movies_audio_language"></div> <div id="movies_audio_language"></div>
@ -178,7 +178,7 @@
</div> </div>
<div class="middle aligned row"> <div class="middle aligned row">
<div class="right aligned five wide column"> <div class="right aligned five wide column">
<label>Subtitles languages</label> <label>Subtitle Languages</label>
</div> </div>
<div class="nine wide column"> <div class="nine wide column">
<select name="languages" id="movies_languages" {{!'multiple="" ' if single_language is False else ''}}class="ui fluid selection dropdown"> <select name="languages" id="movies_languages" {{!'multiple="" ' if single_language is False else ''}}class="ui fluid selection dropdown">
@ -194,7 +194,7 @@
</div> </div>
<div class="middle aligned row"> <div class="middle aligned row">
<div class="right aligned five wide column"> <div class="right aligned five wide column">
<label>Hearing-impaired</label> <label>Hearing-Impaired</label>
</div> </div>
<div class="nine wide column"> <div class="nine wide column">
<div id="movies_hearing-impaired_div" class="ui toggle checkbox"> <div id="movies_hearing-impaired_div" class="ui toggle checkbox">
@ -291,4 +291,4 @@
}); });
$('#movies_languages').dropdown(); $('#movies_languages').dropdown();
</script> </script>