add ability to create timer
This commit is contained in:
parent
f030db9841
commit
121d1de0af
10 changed files with 355 additions and 16 deletions
109
dashboard-ui/livetvnewrecording.html
Normal file
109
dashboard-ui/livetvnewrecording.html
Normal file
|
@ -0,0 +1,109 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Media Browser</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="liveTvNewRecordingPage" data-role="page" class="page libraryPage" data-theme="a" data-view="livetv">
|
||||
<div class="libraryViewNav">
|
||||
<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">Upcoming Recordings</a>
|
||||
<a href="livetvseriestimers.html">Series Recordings</a>
|
||||
</div>
|
||||
<div data-role="content">
|
||||
<form id="liveTvNewRecordingForm" style="margin: 0 auto;">
|
||||
<p><span class="itemName inlineItemName"></span><span class="itemMiscInfo" style="display: inline;"></span></p>
|
||||
<p class="itemEpisodeName"></p>
|
||||
<p>
|
||||
<span class="itemCommunityRating"></span>
|
||||
</p>
|
||||
<p class="itemChannelNumber"></p>
|
||||
<p class="itemGenres"></p>
|
||||
<p class="itemOverview"></p>
|
||||
|
||||
<br />
|
||||
|
||||
<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" checked="checked" />
|
||||
</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>
|
||||
|
||||
<br />
|
||||
<ul data-role="listview" class="ulForm">
|
||||
<li>
|
||||
<label for="txtRequestedPrePaddingSeconds">Requested pre-padding seconds: </label>
|
||||
<input type="number" id="txtRequestedPrePaddingSeconds" pattern="[0-9]*" required="required" min="0" data-mini="true" />
|
||||
</li>
|
||||
<li>
|
||||
<label for="txtRequestedPostPaddingSeconds">Requested post-padding seconds: </label>
|
||||
<input type="number" id="txtRequestedPostPaddingSeconds" pattern="[0-9]*" required="required" min="0" data-mini="true" />
|
||||
</li>
|
||||
<li>
|
||||
<label for="txtRequiredPrePaddingSeconds">Required pre-padding seconds: </label>
|
||||
<input type="number" id="txtRequiredPrePaddingSeconds" pattern="[0-9]*" required="required" min="0" data-mini="true" />
|
||||
</li>
|
||||
<li>
|
||||
<label for="txtRequiredPostPaddingSeconds">Required post-padding seconds: </label>
|
||||
<input type="number" id="txtRequiredPostPaddingSeconds" pattern="[0-9]*" required="required" min="0" data-mini="true" />
|
||||
</li>
|
||||
<li>
|
||||
<button type="submit" data-theme="b" data-icon="ok" 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">
|
||||
$('#liveTvNewRecordingForm').on('submit', LiveTvNewRecordingPage.onSubmit);
|
||||
</script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue