You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
202 lines
8.2 KiB
202 lines
8.2 KiB
6 years ago
|
<!DOCTYPE html>
|
||
6 years ago
|
<html lang="en">
|
||
7 years ago
|
<head>
|
||
|
<script src="{{base_url}}static/jquery/jquery-latest.min.js"></script>
|
||
|
<script src="{{base_url}}static/semantic/semantic.min.js"></script>
|
||
|
<script src="{{base_url}}static/jquery/tablesort.js"></script>
|
||
|
<link rel="stylesheet" href="{{base_url}}static/semantic/semantic.min.css">
|
||
|
|
||
|
<link rel="apple-touch-icon" sizes="120x120" href="{{base_url}}static/apple-touch-icon.png">
|
||
|
<link rel="icon" type="image/png" sizes="32x32" href="{{base_url}}static/favicon-32x32.png">
|
||
|
<link rel="icon" type="image/png" sizes="16x16" href="{{base_url}}static/favicon-16x16.png">
|
||
|
<link rel="manifest" href="{{base_url}}static/manifest.json">
|
||
|
<link rel="mask-icon" href="{{base_url}}static/safari-pinned-tab.svg" color="#5bbad5">
|
||
|
<link rel="shortcut icon" href="{{base_url}}static/favicon.ico">
|
||
|
<meta name="msapplication-config" content="{{base_url}}static/browserconfig.xml">
|
||
|
<meta name="theme-color" content="#ffffff">
|
||
|
|
||
|
<title>Wanted - Bazarr</title>
|
||
|
|
||
|
<style>
|
||
|
body {
|
||
|
background-color: #272727;
|
||
|
}
|
||
|
#tablehistory {
|
||
|
padding-top: 2em;
|
||
|
}
|
||
|
.fast.backward, .backward, .forward, .fast.forward {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
.fast.backward, .backward, .forward, .fast.forward { pointer-events: auto; }
|
||
|
.fast.backward.disabled, .backward.disabled, .forward.disabled, .fast.forward.disabled { pointer-events: none; }
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
%import ast
|
||
6 years ago
|
%from get_languages import *
|
||
7 years ago
|
<div id='loader' class="ui page dimmer">
|
||
6 years ago
|
<div id="loader_text" class="ui indeterminate text loader">Loading...</div>
|
||
7 years ago
|
</div>
|
||
|
|
||
|
<div class="ui container">
|
||
|
<div class="ui right floated basic buttons">
|
||
7 years ago
|
<button id="wanted_search_missing_subtitles" class="ui button"><i class="download icon"></i>Download wanted subtitles</button>
|
||
7 years ago
|
</div>
|
||
|
<table id="tablehistory" class="ui very basic selectable table">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Series</th>
|
||
|
<th>Episode</th>
|
||
|
<th>Episode Title</th>
|
||
5 years ago
|
<th>Missing Subtitle(s)</th>
|
||
7 years ago
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
%import time
|
||
|
%import pretty
|
||
5 years ago
|
%if len(rows) == 0:
|
||
7 years ago
|
<tr>
|
||
5 years ago
|
<td colspan="4">No Missing Subtitles.</td>
|
||
7 years ago
|
</tr>
|
||
|
%end
|
||
|
%for row in rows:
|
||
|
<tr class="selectable">
|
||
5 years ago
|
<td><a href="{{base_url}}episodes/{{row['sonarrSeriesId']}}">{{row['seriesTitle']}}</a></td>
|
||
7 years ago
|
<td class="collapsing">
|
||
5 years ago
|
<%episode = str(row['episode_number']).split('x')%>
|
||
7 years ago
|
{{episode[0] + 'x' + episode[1].zfill(2)}}
|
||
|
</td>
|
||
5 years ago
|
<td>{{row['episodeTitle']}}</td>
|
||
7 years ago
|
<td>
|
||
6 years ago
|
<%
|
||
5 years ago
|
missing_languages = ast.literal_eval(row['missing_subtitles'])
|
||
6 years ago
|
if missing_languages is not None:
|
||
|
from get_subtitle import search_active
|
||
6 years ago
|
from config import settings
|
||
6 years ago
|
for language in missing_languages:
|
||
6 years ago
|
if language.endswith(':forced'):
|
||
|
forced = True
|
||
|
else:
|
||
|
forced = False
|
||
|
end
|
||
5 years ago
|
if row['failedAttempts'] is not None and settings.general.getboolean('adaptive_searching') and language in row['failedAttempts']:
|
||
|
for lang in ast.literal_eval(row['failedAttempts']):
|
||
6 years ago
|
if language in lang:
|
||
|
active = search_active(lang[1])
|
||
|
if active:
|
||
|
%>
|
||
5 years ago
|
<a data-episodePath="{{row['path']}}" data-sceneName="{{row['scene_name']}}" data-language="{{alpha3_from_alpha2(str(language.split(':')[0]))}}" data-hi="{{row['hearing_impaired']}}" data-forced="{{forced}}" data-sonarrSeriesId={{row['sonarrSeriesId']}} data-sonarrEpisodeId={{row['sonarrEpisodeId']}} data-title="{{row['seriesTitle'].replace("'", "\'")}}" class="get_subtitle ui tiny label">
|
||
6 years ago
|
{{language}}
|
||
6 years ago
|
<i style="margin-left:3px; margin-right:0" class="search icon"></i>
|
||
6 years ago
|
</a>
|
||
6 years ago
|
%else:
|
||
5 years ago
|
<a data-tooltip="Automatic Searching Delayed (Adaptive Search)" data-position="top right" data-inverted="" data-episodePath="{{row['path']}}" data-sceneName="{{row['scene_name']}}" data-language="{{alpha3_from_alpha2(str(language.split(':')[0]))}}" data-hi="{{row['hearing_impaired']}}" data-forced="{{forced}}" data-sonarrSeriesId={{row['sonarrSeriesId']}} data-sonarrEpisodeId={{row['sonarrEpisodeId']}} data-title="{{row['seriesTitle'].replace("'", "\'")}}" class="get_subtitle ui tiny label">
|
||
6 years ago
|
{{language}}
|
||
6 years ago
|
<i style="margin-left:3px; margin-right:0" class="search red icon"></i>
|
||
6 years ago
|
</a>
|
||
6 years ago
|
%end
|
||
|
%end
|
||
|
%end
|
||
|
%else:
|
||
5 years ago
|
<a data-episodePath="{{row['path']}}" data-sceneName="{{row['scene_name']}}" data-language="{{alpha3_from_alpha2(str(language.split(':')[0]))}}" data-hi="{{row['hearing_impaired']}}" data-forced="{{forced}}" data-sonarrSeriesId={{row['sonarrSeriesId']}} data-sonarrEpisodeId={{row['sonarrEpisodeId']}} data-title="{{row['seriesTitle'].replace("'", "\'")}}" class="get_subtitle ui tiny label">
|
||
6 years ago
|
{{language}}
|
||
6 years ago
|
<i style="margin-left:3px; margin-right:0" class="search icon"></i>
|
||
6 years ago
|
</a>
|
||
6 years ago
|
%end
|
||
|
|
||
7 years ago
|
%end
|
||
|
%end
|
||
|
</td>
|
||
|
</tr>
|
||
|
%end
|
||
|
</tbody>
|
||
|
</table>
|
||
6 years ago
|
%try: page_size
|
||
|
%except NameError: page_size = "25"
|
||
6 years ago
|
%end
|
||
6 years ago
|
%if page_size != -1:
|
||
7 years ago
|
<div class="ui grid">
|
||
|
<div class="three column row">
|
||
|
<div class="column"></div>
|
||
|
<div class="center aligned column">
|
||
|
<i class="\\
|
||
|
%if page == "1":
|
||
|
disabled\\
|
||
|
%end
|
||
|
fast backward icon"></i>
|
||
|
<i class="\\
|
||
|
%if page == "1":
|
||
|
disabled\\
|
||
|
%end
|
||
|
backward icon"></i>
|
||
|
{{page}} / {{max_page}}
|
||
|
<i class="\\
|
||
6 years ago
|
%if int(page) >= int(max_page):
|
||
7 years ago
|
disabled\\
|
||
|
%end
|
||
|
forward icon"></i>
|
||
|
<i class="\\
|
||
6 years ago
|
%if int(page) >= int(max_page):
|
||
7 years ago
|
disabled\\
|
||
|
%end
|
||
|
fast forward icon"></i>
|
||
|
</div>
|
||
5 years ago
|
<div class="right floated right aligned column">Total Records: {{missing_count}}</div>
|
||
7 years ago
|
</div>
|
||
|
</div>
|
||
6 years ago
|
%end
|
||
7 years ago
|
</div>
|
||
|
</body>
|
||
|
</html>
|
||
|
|
||
|
|
||
|
<script>
|
||
6 years ago
|
$('a, button:not(#wanted_search_missing_subtitles)').on('click', function(){
|
||
7 years ago
|
$('#loader').addClass('active');
|
||
6 years ago
|
});
|
||
7 years ago
|
|
||
6 years ago
|
$('.fast.backward').on('click', function(){
|
||
7 years ago
|
loadURLseries(1);
|
||
6 years ago
|
});
|
||
|
$('.backward:not(.fast)').on('click', function(){
|
||
7 years ago
|
loadURLseries({{int(page)-1}});
|
||
6 years ago
|
});
|
||
|
$('.forward:not(.fast)').on('click', function(){
|
||
7 years ago
|
loadURLseries({{int(page)+1}});
|
||
6 years ago
|
});
|
||
|
$('.fast.forward').on('click', function(){
|
||
7 years ago
|
loadURLseries({{int(max_page)}});
|
||
6 years ago
|
});
|
||
7 years ago
|
|
||
6 years ago
|
$('#wanted_search_missing_subtitles').on('click', function(){
|
||
6 years ago
|
$(this).addClass('disabled');
|
||
6 years ago
|
$(this).find('i:first').addClass('loading');
|
||
|
$.ajax({
|
||
|
url: '{{base_url}}wanted_search_missing_subtitles'
|
||
|
})
|
||
6 years ago
|
});
|
||
7 years ago
|
|
||
6 years ago
|
$('.get_subtitle').on('click', function(){
|
||
|
const values = {
|
||
7 years ago
|
episodePath: $(this).attr("data-episodePath"),
|
||
|
sceneName: $(this).attr("data-sceneName"),
|
||
|
language: $(this).attr("data-language"),
|
||
|
hi: $(this).attr("data-hi"),
|
||
6 years ago
|
forced: $(this).attr("data-forced"),
|
||
7 years ago
|
sonarrSeriesId: $(this).attr("data-sonarrSeriesId"),
|
||
6 years ago
|
sonarrEpisodeId: $(this).attr("data-sonarrEpisodeId"),
|
||
6 years ago
|
title: $(this).attr("data-title")
|
||
7 years ago
|
};
|
||
5 years ago
|
$('#loader_text').text("Downloading Subtitles...");
|
||
6 years ago
|
$('#loader').addClass('active');
|
||
7 years ago
|
$.ajax({
|
||
|
url: "{{base_url}}get_subtitle",
|
||
|
type: "POST",
|
||
|
dataType: "json",
|
||
|
data: values
|
||
|
}).always(function () {
|
||
|
window.location.reload();
|
||
|
});
|
||
|
})
|
||
5 years ago
|
</script>
|