jellyfin-web/dashboard-ui/autoorganizelog.html

100 lines
5.0 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>
2015-08-31 21:15:10 -07:00
<div id="libraryFileOrganizerLogPage" data-role="page" class="page type-interior organizePage" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Auto-Organize" data-require="jqmtable,jqmpopup,scripts/autoorganizelog,scripts/taskbutton,paperbuttonstyle,detailtablecss">
2014-01-20 23:10:58 -07:00
<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
2015-01-20 14:32:48 -07:00
<div style="float: right; position: relative; top: 15px;margin-top: -5px;display:none;" class="organizeTaskPanel">
2015-03-29 20:04:55 -07:00
<button style="display: none;" class="btnClearLog" type="button" data-inline="true" data-icon="forbidden" data-mini="true">Clear</button>
2015-01-20 14:32:48 -07:00
<button type="button" class="btnOrganize" data-icon="action" data-mini="true" data-inline="true">${ButtonOrganize}</button>
2015-01-20 13:19:54 -07:00
<progress max="100" min="0" style="width:100px;display:none;" class="organizeProgress"></progress>
</div>
<br />
2014-01-22 10:05:06 -07:00
<div style="clear: both;"></div>
2014-01-20 23:10:58 -07:00
</div>
2014-07-11 19:31:08 -07:00
<table data-role="table" data-mode="reflow" class="tblOrganizationResults stripedTable ui-responsive table-stroke">
2014-01-20 23:10:58 -07:00
<thead>
<tr>
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>
2015-09-06 12:09:36 -07:00
<th data-priority="1"></th>
2014-01-20 23:10:58 -07:00
</tr>
</thead>
<tbody class="resultBody"></tbody>
2014-01-20 23:10:58 -07:00
</table>
<br />
2015-01-20 13:19:54 -07:00
<div style="text-align: right;vertical-align:middle;" class="legend">
<div style="display: inline-block; height: 10px; width: 10px; background: green;margin-right:1px;"></div>
2014-04-14 20:54:52 -07:00
<span>${LabelCompleted}</span>
2015-01-20 13:19:54 -07:00
<div style="display: inline-block; height: 10px; width: 10px; background: red; margin-left: 1em;margin-right:1px;"></div>
2014-04-14 20:54:52 -07:00
<span>${LabelFailed}</span>
2015-01-20 13:19:54 -07:00
<div style="display: inline-block; height: 10px; width: 10px; background: blue; margin-left: 1em;margin-right:1px;"></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
2014-06-28 12:35:30 -07:00
<div data-role="popup" class="popup episodeCorrectionPopup">
2014-01-22 10:05:06 -07:00
<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>
2015-01-01 22:36:27 -07:00
<input id="txtSeason" type="number" pattern="[0-9]*" required="required" min="0" />
2014-01-22 10:05:06 -07:00
</div>
<div style="margin: 1em 0;">
2014-04-14 20:54:52 -07:00
<label for="txtEpisode">${LabelEpisodeNumber}</label>
2015-01-01 22:36:27 -07:00
<input id="txtEpisode" type="number" pattern="[0-9]*" required="required" min="0" />
2014-01-22 10:05:06 -07:00
</div>
<div style="margin: 1em 0;">
2014-04-14 20:54:52 -07:00
<label for="txtEndingEpisode">${LabelEndingEpisodeNumber}</label>
2015-01-01 22:36:27 -07:00
<input id="txtEndingEpisode" type="number" 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>
2014-01-20 23:10:58 -07:00
</div>
</body>
</html>