jellyfin-web/dashboard-ui/appsplayback.html

59 lines
2.7 KiB
HTML
Raw Normal View History

2013-02-20 18:33:05 -07:00
<!DOCTYPE html>
<html>
<head>
2014-04-08 19:12:17 -07:00
<title>${TitleAppSettings}</title>
2013-02-20 18:33:05 -07:00
</head>
<body>
2013-12-25 20:44:26 -07:00
<div id="appsPlaybackPage" data-role="page" class="page appsPage type-interior">
2013-02-20 18:33:05 -07:00
<div data-role="content">
<div class="content-primary">
2013-12-25 20:44:26 -07:00
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
2014-04-08 19:12:17 -07:00
<a href="#" data-role="button" class="ui-btn-active">${TabResume}</a>
<a href="appsweather.html" data-role="button">${TabWeather}</a>
2013-12-25 20:44:26 -07:00
</div>
<form class="appsPlaybackForm">
2013-02-20 18:33:05 -07:00
<ul data-role="listview" class="ulForm">
<li>
2014-04-08 19:12:17 -07:00
<label for="txtMinResumePct">${LabelMinResumePercentage}</label>
2013-04-16 21:58:32 -07:00
<input type="number" id="txtMinResumePct" name="txtMinResumePct" pattern="[0-9]*" required="required" min="0" max="100" />
2013-02-20 18:33:05 -07:00
<div class="fieldDescription">
2014-04-08 19:12:17 -07:00
${LabelMinResumePercentageHelp}
2013-02-20 18:33:05 -07:00
</div>
</li>
<li>
2014-04-08 19:12:17 -07:00
<label for="txtMaxResumePct">${LabelMaxResumePercentage}</label>
2013-04-16 21:58:32 -07:00
<input type="number" id="txtMaxResumePct" name="txtMaxResumePct" pattern="[0-9]*" required="required" min="1" max="100" />
2013-02-20 18:33:05 -07:00
<div class="fieldDescription">
2014-04-08 19:12:17 -07:00
${LabelMaxResumePercentageHelp}
2013-02-20 18:33:05 -07:00
</div>
</li>
<li>
2014-04-08 19:12:17 -07:00
<label for="txtMinResumeDuration">${LabelMinResumeDuration}</label>
2013-04-16 21:58:32 -07:00
<input type="number" id="txtMinResumeDuration" name="txtMinResumeDuration" pattern="[0-9]*" required="required" min="0" />
2013-02-20 18:33:05 -07:00
<div class="fieldDescription">
2014-04-08 19:12:17 -07:00
${LabelMinResumeDurationHelp}
2013-02-20 18:33:05 -07:00
</div>
</li>
2013-04-16 21:58:32 -07:00
<li>
2013-12-24 11:37:29 -07:00
<button type="submit" data-theme="b" data-icon="check">
2014-04-08 19:12:17 -07:00
${ButtonSave}
2013-02-20 18:33:05 -07:00
</button>
2013-04-16 21:58:32 -07:00
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete">
2014-04-08 19:12:17 -07:00
${ButtonCancel}
2013-04-16 21:58:32 -07:00
</button>
2013-02-20 18:33:05 -07:00
</li>
</ul>
</form>
</div>
</div>
<script type="text/javascript">
2013-12-25 20:44:26 -07:00
$('.appsPlaybackForm').off('submit', AppsPlaybackPage.onSubmit).on('submit', AppsPlaybackPage.onSubmit);
2013-02-20 18:33:05 -07:00
</script>
</div>
</body>
</html>