1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/livetvtuner.html

80 lines
4.4 KiB
HTML
Raw Normal View History

2018-09-12 19:26:21 +02:00
<div id="liveTvTunerPage" data-role="page" class="page type-interior liveTvSettingsPage withTabs">
2015-07-25 14:11:46 -04:00
2017-05-06 15:42:17 -04:00
<div>
2016-03-16 01:33:31 -04:00
<div class="content-primary">
2015-07-25 14:11:46 -04:00
2016-08-21 15:18:58 -04:00
<form>
2018-09-12 19:26:21 +02:00
<div class="verticalSection">
<div class="sectionTitleContainer flex align-items-center">
<h1 class="sectionTitle">${HeaderLiveTvTunerSetup}</h1>
<a is="emby-linkbutton" class="raised button-alt headerHelpButton" target="_blank" href="https://github.com/MediaBrowser/Wiki/wiki/Live%20TV">${Help}</a>
</div>
</div>
2015-07-25 14:11:46 -04:00
2017-03-13 14:57:45 -04:00
<div class="selectContainer">
<select is="emby-select" class="selectType" label="${LabelTunerType}" required="required"></select>
2016-08-21 15:18:58 -04:00
</div>
2017-03-13 14:57:45 -04:00
2017-03-27 15:31:49 -04:00
<button is="emby-button" type="button" class="raised button-cancel block btnDetect hide" style="margin-bottom:3em;">${HeaderDetectMyDevices}</button>
2018-09-12 19:26:21 +02:00
<div class="inputContainer fldFriendlyName hide">
<input is="emby-input" type="text" class="txtFriendlyName" label="${LabelFriendlyName}" autocomplete="off" />
</div>
2017-03-13 14:57:45 -04:00
<div class="inputContainer fldPath hide">
<div style="display: flex; align-items: center;">
<div style="flex-grow: 1;">
<input is="emby-input" type="text" class="txtDevicePath" label="${LabelFileOrUrl}" required="required" autocomplete="off" />
2017-03-13 14:57:45 -04:00
</div>
2017-09-14 14:50:29 -04:00
<button type="button" is="paper-icon-button-light" class="btnSelectPath hide emby-input-iconbutton"><i class="md-icon">search</i></button>
2017-03-13 14:57:45 -04:00
</div>
2016-08-21 15:18:58 -04:00
</div>
2017-03-13 14:57:45 -04:00
2018-09-12 19:26:21 +02:00
<div class="inputContainer fldUserAgent hide">
<input is="emby-input" type="text" class="txtUserAgent" label="${LabelUserAgent}" autocomplete="off" />
<div class="fieldDescription">${UserAgentHelp}</div>
</div>
<div class="inputContainer fldTunerCount hide">
<input is="emby-input" type="number" pattern="[0-9]*" required="required" min="0" step="1" class="txtTunerCount" label="${LabelSimultaneousConnectionLimit}" autocomplete="off" value="0" />
<div class="fieldDescription">${SimultaneousConnectionLimitHelp}</div>
</div>
2017-03-13 14:57:45 -04:00
<div class="checkboxContainer checkboxContainer-withDescription fldFavorites hide">
2016-09-11 17:02:32 -04:00
<label>
<input type="checkbox" is="emby-checkbox" class="chkFavorite" />
<span>${LabelImportOnlyFavoriteChannels}</span>
</label>
<div class="fieldDescription checkboxFieldDescription">${ImportFavoriteChannelsHelp}</div>
2016-08-21 15:18:58 -04:00
</div>
2017-03-13 14:57:45 -04:00
<div class="checkboxContainer checkboxContainer-withDescription fldTranscode hide">
2016-09-11 17:02:32 -04:00
<label>
<input type="checkbox" is="emby-checkbox" class="chkTranscode" />
<span>${LabelAllowHWTranscoding}</span>
</label>
<div class="fieldDescription checkboxFieldDescription">${AllowHWTranscodingHelp}</div>
2016-08-21 15:18:58 -04:00
</div>
2017-06-24 14:27:10 -04:00
<div class="checkboxContainer checkboxContainer-withDescription fldStreamLoop hide">
<label>
<input type="checkbox" is="emby-checkbox" class="chkStreamLoop" />
<span>${EnableStreamLooping}</span>
</label>
<div class="fieldDescription checkboxFieldDescription">${EnableStreamLoopingHelp}</div>
</div>
2017-03-13 14:57:45 -04:00
<p class="drmMessage hide">${DrmChannelsNotImported}</p>
2017-03-25 17:32:04 -04:00
<p class="otherOptionsMessage hide" style="margin:2em 0;">${ForAdditionalLiveTvOptions}</p>
<br />
2018-09-12 19:26:21 +02:00
<input type="hidden" class="fldDeviceId" />
2016-08-21 15:18:58 -04:00
<div>
2016-09-11 17:02:32 -04:00
<button is="emby-button" type="submit" class="raised button-submit block">
<span>${ButtonSave}</span>
</button>
<button is="emby-button" type="button" class="raised button-cancel block btnCancel" onclick="history.back();">
<span>${ButtonCancel}</span>
</button>
2016-08-21 15:18:58 -04:00
</div>
</form>
2015-07-25 14:11:46 -04:00
</div>
</div>
</div>