mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
82 lines
3.6 KiB
HTML
82 lines
3.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Media Browser</title>
|
|
</head>
|
|
<body>
|
|
<div id="liveTvTimerPage" data-role="page" class="page libraryPage" data-theme="b" data-view="livetv">
|
|
<div class="libraryViewNav">
|
|
<a href="livetvguide.html">Guide</a>
|
|
<a href="livetvchannels.html">Channels</a>
|
|
<a href="livetvrecordings.html">Recordings</a>
|
|
<a href="livetvtimers.html" class="ui-btn-active">Scheduled</a>
|
|
<a href="livetvseriestimers.html">Series</a>
|
|
</div>
|
|
<div data-role="content">
|
|
<form class="liveTvTimerForm" style="margin: 0 auto;">
|
|
<p><span class="itemName inlineItemName"></span><span class="itemMiscInfo" style="display: inline;"></span></p>
|
|
<p class="itemEpisodeName"></p>
|
|
<p class="itemMiscInfo miscTvProgramInfo"></p>
|
|
<p>
|
|
<span class="itemCommunityRating"></span>
|
|
</p>
|
|
<p class="itemGenres"></p>
|
|
<p class="itemOverview"></p>
|
|
|
|
<p style="margin-top: 2em;">
|
|
<span class="status"></span>
|
|
<a id="btnCancelTimer" href="#" style="margin-left: 2em;">Cancel Recording</a>
|
|
</p>
|
|
|
|
<br />
|
|
|
|
<div data-role="collapsible" data-mini="true">
|
|
<h3>Pre/Post Padding</h3>
|
|
<div>
|
|
<br />
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<label for="txtPrePaddingSeconds">Pre-padding minutes: </label>
|
|
<input type="number" id="txtPrePaddingSeconds" pattern="[0-9]*" required="required" min="0" max="10" step=".5" />
|
|
</li>
|
|
<li>
|
|
<input type="checkbox" data-mini="true" id="chkPrePaddingRequired" />
|
|
<label for="chkPrePaddingRequired">Pre-padding is required in order to record.</label>
|
|
</li>
|
|
<li>
|
|
<div style="height: .5em;"></div>
|
|
</li>
|
|
<li>
|
|
<label for="txtPostPaddingSeconds">Post-padding minutes: </label>
|
|
<input type="number" id="txtPostPaddingSeconds" pattern="[0-9]*" required="required" min="0" max="10" step=".5" />
|
|
</li>
|
|
<li>
|
|
<input type="checkbox" data-mini="true" id="chkPostPaddingRequired" />
|
|
<label for="chkPostPaddingRequired">Post-padding is required in order to record.</label>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<br />
|
|
<br />
|
|
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<button type="submit" data-theme="b" data-icon="check" data-mini="true">
|
|
Save
|
|
</button>
|
|
<button type="button" onclick="Dashboard.navigate('livetvtimers.html');" data-icon="delete" data-mini="true">
|
|
Cancel
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
</form>
|
|
</div>
|
|
<script type="text/javascript">
|
|
$('.liveTvTimerForm').off('submit', LiveTvTimerPage.onSubmit).on('submit', LiveTvTimerPage.onSubmit);
|
|
</script>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|