mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
125 lines
5.9 KiB
HTML
125 lines
5.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Media Browser</title>
|
|
</head>
|
|
<body>
|
|
<div id="liveTvNewRecordingPage" data-role="page" class="page libraryPage" data-theme="b" data-view="livetv">
|
|
<div class="libraryViewNav">
|
|
<a href="livetvsuggested.html">Suggested</a>
|
|
<a href="livetvguide.html">Guide</a>
|
|
<a href="livetvchannels.html">Channels</a>
|
|
<a href="livetvrecordings.html" class="ui-btn-active">Recordings</a>
|
|
<a href="livetvtimers.html">Scheduled</a>
|
|
<a href="livetvseriestimers.html">Series</a>
|
|
</div>
|
|
<div data-role="content">
|
|
<form class="liveTvNewRecordingForm" 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>
|
|
|
|
<br />
|
|
|
|
<div style="display: none;" id="eligibleForSeriesFields">
|
|
<p>
|
|
<input type="checkbox" data-mini="true" id="chkRecordSeries" />
|
|
<label for="chkRecordSeries">Record Series</label>
|
|
</p>
|
|
<br />
|
|
|
|
<ul data-role="listview" class="ulForm" id="seriesFields" style="display: none;">
|
|
<li>
|
|
<h3>Days</h3>
|
|
<div data-role="controlgroup">
|
|
|
|
<input type="checkbox" data-mini="true" id="chkSunday" />
|
|
<label for="chkSunday">Sunday</label>
|
|
|
|
<input type="checkbox" data-mini="true" id="chkMonday" />
|
|
<label for="chkMonday">Monday</label>
|
|
|
|
<input type="checkbox" data-mini="true" id="chkTuesday" />
|
|
<label for="chkTuesday">Tuesday</label>
|
|
|
|
<input type="checkbox" data-mini="true" id="chkWednesday" />
|
|
<label for="chkWednesday">Wednesday</label>
|
|
|
|
<input type="checkbox" data-mini="true" id="chkThursday" />
|
|
<label for="chkThursday">Thursday</label>
|
|
|
|
<input type="checkbox" data-mini="true" id="chkFriday" />
|
|
<label for="chkFriday">Friday</label>
|
|
|
|
<input type="checkbox" data-mini="true" id="chkSaturday" />
|
|
<label for="chkSaturday">Saturday</label>
|
|
</div>
|
|
</li>
|
|
<li>
|
|
<label for="chkNewOnly">Record only new episodes</label>
|
|
<input type="checkbox" id="chkNewOnly" data-mini="true" />
|
|
</li>
|
|
<li>
|
|
<label for="chkAnyTime">Record program at any time</label>
|
|
<input type="checkbox" id="chkAnyTime" data-mini="true" />
|
|
</li>
|
|
<li>
|
|
<label for="chkAllChannels">Record program on all channels</label>
|
|
<input type="checkbox" id="chkAllChannels" data-mini="true" />
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<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="30" step="1" />
|
|
</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="30" step="1" />
|
|
</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">
|
|
Record
|
|
</button>
|
|
<button id="btnCancel" type="button" data-icon="delete" data-mini="true">
|
|
Cancel
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
</form>
|
|
</div>
|
|
<script type="text/javascript">
|
|
$('.liveTvNewRecordingForm').off('submit', LiveTvNewRecordingPage.onSubmit).on('submit', LiveTvNewRecordingPage.onSubmit);
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html>
|