jellyfin-web/dashboard-ui/dlnasettings.html

69 lines
3.6 KiB
HTML
Raw Normal View History

2016-09-11 14:02:32 -07:00
<div id="dlnaSettingsPage" data-role="page" class="page type-interior withTabs" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Play%20to" data-require="scripts/dlnasettings,emby-select,emby-input,emby-checkbox,emby-button">
2014-03-10 10:38:53 -07:00
2016-03-15 22:33:31 -07:00
<div data-role="content">
<div class="content-primary">
2014-03-10 10:38:53 -07:00
2016-03-15 22:33:31 -07:00
<form class="dlnaSettingsForm">
2014-03-10 10:38:53 -07:00
2016-09-11 14:02:32 -07:00
<div class="checkboxContainer checkboxContainer-withDescription">
<label>
<input type="checkbox" is="emby-checkbox" id="chkEnablePlayTo" />
<span>${LabelEnableDlnaPlayTo}</span>
</label>
<div class="fieldDescription checkboxFieldDescription">${LabelEnableDlnaPlayToHelp}</div>
2016-08-21 11:40:38 -07:00
</div>
2016-09-11 14:02:32 -07:00
<div class="checkboxContainer checkboxContainer-withDescription">
<label>
<input type="checkbox" is="emby-checkbox" id="chkEnableDlnaDebugLogging" />
<span>${LabelEnableDlnaDebugLogging}</span>
</label>
<div class="fieldDescription checkboxFieldDescription">${LabelEnableDlnaDebugLoggingHelp}</div>
2016-08-21 11:40:38 -07:00
</div>
2016-09-11 14:02:32 -07:00
2016-08-21 11:40:38 -07:00
<div class="inputContainer">
<input is="emby-input" type="number" id="txtClientDiscoveryInterval" min="1" max="300" label="${LabelEnableDlnaClientDiscoveryInterval}"/>
<div class="fieldDescription">${LabelEnableDlnaClientDiscoveryIntervalHelp}</div>
</div>
2016-09-11 14:02:32 -07:00
<div class="checkboxContainer checkboxContainer-withDescription">
<label>
<input type="checkbox" is="emby-checkbox" id="chkEnableServer" />
<span>${LabelEnableDlnaServer}</span>
</label>
<div class="fieldDescription checkboxFieldDescription">${LabelEnableDlnaServerHelp}</div>
2016-08-21 11:40:38 -07:00
</div>
2016-09-11 14:02:32 -07:00
<div class="checkboxContainer checkboxContainer-withDescription">
<label>
<input type="checkbox" is="emby-checkbox" id="chkBlastAliveMessages" />
<span>${LabelEnableBlastAliveMessages}</span>
</label>
<div class="fieldDescription checkboxFieldDescription">${LabelEnableBlastAliveMessagesHelp}</div>
2016-08-21 11:40:38 -07:00
</div>
2016-09-11 14:02:32 -07:00
2016-08-21 11:40:38 -07:00
<div class="inputContainer">
<input is="emby-input" type="number" id="txtBlastInterval" min="1" max="300" label="${LabelBlastMessageInterval}"/>
<div class="fieldDescription">${LabelBlastMessageIntervalHelp}</div>
</div>
<div class="selectContainer">
<select is="emby-select" id="selectUser" data-mini="true" label="${LabelDefaultUser}"></select>
<div class="fieldDescription">${LabelDefaultUserHelp}</div>
</div>
2016-09-11 14:02:32 -07:00
<div class="checkboxContainer checkboxContainer-withDescription">
<label>
<input type="checkbox" is="emby-checkbox" id="chkEnableMovieFolders" />
<span>${LabelEnableEnhancedMovies}</span>
</label>
<div class="fieldDescription checkboxFieldDescription">${LabelEnableEnhancedMoviesHelp}</div>
2016-08-21 11:40:38 -07:00
</div>
<div>
2016-09-08 23:59:23 -07:00
<button is="emby-button" type="submit" class="raised button-submit block">
2016-09-11 14:02:32 -07:00
<span>${ButtonSave}</span>
2016-08-21 11:40:38 -07:00
</button>
</div>
2016-03-15 22:33:31 -07:00
</form>
2014-03-10 10:38:53 -07:00
</div>
</div>
2016-03-15 22:33:31 -07:00
</div>