jellyfin-web/dashboard-ui/autoorganizelog.html

99 lines
4.7 KiB
HTML
Raw Normal View History

2014-01-20 23:10:58 -07:00
<!DOCTYPE html>
<html>
<head>
2014-04-14 20:54:52 -07:00
<title>${TitleAutoOrganize}</title>
2014-01-20 23:10:58 -07:00
</head>
<body>
<div id="libraryFileOrganizerLogPage" data-role="page" class="page type-interior adminPage organizePage">
<div data-role="content">
<div class="content-primary">
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
2014-04-14 20:54:52 -07:00
<a href="#" data-role="button" class="ui-btn-active">${TabActivityLog}</a>
<a href="autoorganizetv.html" data-role="button">${TabTV}</a>
2014-01-20 23:10:58 -07:00
</div>
2014-03-01 10:53:56 -07:00
<div style="margin: -25px 0 1em; text-align: right;">
2014-01-22 10:05:06 -07:00
<div class="listTopPaging" style="float: left; position: relative; top: 15px;">
2014-01-20 23:10:58 -07:00
</div>
2014-01-22 10:05:06 -07:00
<button style="display: none;" class="btnClearLog" type="button" data-inline="true" data-icon="forbidden" data-mini="true">Clear</button>
<div style="clear: both;"></div>
2014-01-20 23:10:58 -07:00
</div>
2014-01-22 10:05:06 -07:00
<table data-role="table" data-mode="reflow" class="tblOrganizationResults stripedTable ui-responsive table-stroke" style="display: table;">
2014-01-20 23:10:58 -07:00
<thead>
<tr>
2014-01-22 10:05:06 -07:00
<th data-priority="1"></th>
2014-04-14 20:54:52 -07:00
<th data-priority="2">${HeaderDate}</th>
<th data-priority="1">${HeaderSource}</th>
<th data-priority="3">${HeaderDestination}</th>
2014-01-20 23:10:58 -07:00
</tr>
</thead>
<tbody class="resultBody">
</tbody>
</table>
<br />
2014-01-22 10:05:06 -07:00
<div style="text-align: right;" class="legend">
<div style="display: inline-block; height: 10px; width: 10px; background: green;"></div>
2014-04-14 20:54:52 -07:00
<span>${LabelCompleted}</span>
2014-01-22 10:05:06 -07:00
<div style="display: inline-block; height: 10px; width: 10px; background: red; margin-left: 1em;"></div>
2014-04-14 20:54:52 -07:00
<span>${LabelFailed}</span>
2014-01-22 10:05:06 -07:00
<div style="display: inline-block; height: 10px; width: 10px; background: blue; margin-left: 1em;"></div>
2014-04-14 20:54:52 -07:00
<span>${LabelSkipped}</span>
2014-01-22 10:05:06 -07:00
</div>
2014-01-20 23:10:58 -07:00
<div class="listBottomPaging">
</div>
</div>
</div>
2014-01-22 10:05:06 -07:00
<div data-role="popup" data-transition="slidefade" class="popup episodeCorrectionPopup">
<div class="ui-bar-a" style="text-align: center; padding: 0 20px;">
2014-04-14 20:54:52 -07:00
<h3>${HeaderEpisodeOrganization}</h3>
2014-01-22 10:05:06 -07:00
</div>
<div data-role="content">
<form class="episodeCorrectionForm">
<p><span class="inputFile"></span></p>
<div style="margin: 1em 0 1em; min-width: 250px;">
2014-04-14 20:54:52 -07:00
<label for="selectSeries">${LabelSeries}</label>
2014-01-22 10:05:06 -07:00
<select id="selectSeries" data-mini="true" required="required"></select>
</div>
<div style="margin: 1em 0;">
2014-04-14 20:54:52 -07:00
<label for="txtSeason">${LabelSeasonNumber}</label>
2014-01-22 10:05:06 -07:00
<input id="txtSeason" type="number" data-mini="true" pattern="[0-9]*" required="required" min="0" />
</div>
<div style="margin: 1em 0;">
2014-04-14 20:54:52 -07:00
<label for="txtEpisode">${LabelEpisodeNumber}</label>
2014-01-22 10:05:06 -07:00
<input id="txtEpisode" type="number" data-mini="true" pattern="[0-9]*" required="required" min="0" />
</div>
<div style="margin: 1em 0;">
2014-04-14 20:54:52 -07:00
<label for="txtEndingEpisode">${LabelEndingEpisodeNumber}</label>
2014-01-22 10:05:06 -07:00
<input id="txtEndingEpisode" type="number" data-mini="true" pattern="[0-9]*" min="0" />
2014-04-14 20:54:52 -07:00
<div class="fieldDescription">${LabelEndingEpisodeNumberHelp}</div>
2014-01-22 10:05:06 -07:00
</div>
<p>
<button type="submit" data-theme="b" data-icon="check" data-mini="true">
2014-04-14 20:54:52 -07:00
${ButtonOk}
2014-01-22 10:05:06 -07:00
</button>
<button type="button" data-icon="delete" onclick="$(this).parents('.popup').popup('close');" data-mini="true">
2014-04-14 20:54:52 -07:00
${ButtonCancel}
2014-01-22 10:05:06 -07:00
</button>
</p>
<input id="hfResultId" type="hidden" />
</form>
</div>
</div>
<script type="text/javascript">
$('.episodeCorrectionForm').off('submit', OrganizerLogPage.onEpisodeCorrectionFormSubmit).on('submit', OrganizerLogPage.onEpisodeCorrectionFormSubmit);
</script>
2014-01-20 23:10:58 -07:00
</div>
</body>
</html>