mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
72 lines
3.5 KiB
HTML
72 lines
3.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>${TitleChannels}</title>
|
|
</head>
|
|
<body>
|
|
<div id="channelSettingsPage" data-role="page" class="page type-interior channelSettingsPage">
|
|
|
|
<div data-role="content">
|
|
<div class="content-primary">
|
|
<form class="channelSettingsForm">
|
|
<p class="noChannelsHeader" style="display: none;">${ChannelSettingsFormHelp}</p>
|
|
<br />
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<label for="selectChannelResolution">${LabelChannelStreamQuality}</label>
|
|
<select id="selectChannelResolution" data-mini="true">
|
|
<option value="">${OptionBestAvailableStreamQuality}</option>
|
|
<option value="1920">1080p</option>
|
|
<option value="1280">720p</option>
|
|
<option value="720">480p</option>
|
|
</select>
|
|
<div class="fieldDescription">${LabelChannelStreamQualityHelp}</div>
|
|
</li>
|
|
</ul>
|
|
<div class="channelDownloading" style="display: none;">
|
|
|
|
<div>
|
|
<label>${LabelEnableChannelContentDownloadingFor}</label>
|
|
</div>
|
|
<div class="channelDownloadingList"></div>
|
|
<div class="fieldDescription">${LabelEnableChannelContentDownloadingForHelp}</div>
|
|
<br />
|
|
<br />
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<label for="txtCachePath">${LabelChannelDownloadPath}</label>
|
|
<div style="display: inline-block; width: 92%;">
|
|
<input type="text" id="txtCachePath" name="txtCachePath" data-mini="true" />
|
|
</div>
|
|
<button id="btnSelectCachePath" type="button" data-icon="search" data-iconpos="notext" data-inline="true">${ButtonSelectDirectory}</button>
|
|
<div class="fieldDescription">${LabelChannelDownloadPathHelp}</div>
|
|
</li>
|
|
<li>
|
|
<label for="txtDownloadAge">${LabelChannelDownloadAge}</label>
|
|
<input type="number" id="txtDownloadAge" pattern="[0-9]*" min="1" data-mini="true" />
|
|
<div class="fieldDescription">${LabelChannelDownloadAgeHelp}</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<button type="submit" data-theme="b" data-icon="check">
|
|
${ButtonSave}
|
|
</button>
|
|
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete">
|
|
${ButtonCancel}
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
$('.channelSettingsForm').off('submit', ChannelSettingsPage.onSubmit).on('submit', ChannelSettingsPage.onSubmit);
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html>
|