mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
53 lines
2.6 KiB
HTML
53 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>${TitleDlna}</title>
|
|
</head>
|
|
<body>
|
|
<div id="dlnaSettingsPage" data-role="page" class="page type-interior dlnaPage" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Play%20to" data-require="scripts/dlnasettings">
|
|
|
|
<div data-role="content">
|
|
<div class="content-primary">
|
|
|
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
|
<a href="#" data-role="button" class="ui-btn-active">${TabPlayTo}</a>
|
|
<a href="dlnaserversettings.html" data-role="button">${TabServer}</a>
|
|
<a href="dlnaprofiles.html" data-role="button">${TabProfiles}</a>
|
|
</div>
|
|
|
|
<form class="dlnaSettingsForm">
|
|
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<label for="chkEnablePlayTo">${LabelEnableDlnaPlayTo}</label>
|
|
<input type="checkbox" id="chkEnablePlayTo" data-mini="true" />
|
|
<div class="fieldDescription">${LabelEnableDlnaPlayToHelp}</div>
|
|
</li>
|
|
<li>
|
|
<label for="chkEnableDlnaDebugLogging">${LabelEnableDlnaDebugLogging}</label>
|
|
<input type="checkbox" id="chkEnableDlnaDebugLogging" data-mini="true" />
|
|
<div class="fieldDescription">${LabelEnableDlnaDebugLoggingHelp}</div>
|
|
</li>
|
|
<li>
|
|
<label for="txtClientDiscoveryInterval">${LabelEnableDlnaClientDiscoveryInterval}</label>
|
|
<input type="number" id="txtClientDiscoveryInterval" min="1" max="300" />
|
|
<div class="fieldDescription">${LabelEnableDlnaClientDiscoveryIntervalHelp}</div>
|
|
</li>
|
|
</ul>
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<button type="submit" data-role="none" class="clearButton">
|
|
<paper-button raised class="submit block"><iron-icon icon="check"></iron-icon><span>${ButtonSave}</span></paper-button>
|
|
</button>
|
|
|
|
<paper-button raised class="cancel block btnCancel" onclick="history.back();"><iron-icon icon="close"></iron-icon><span>${ButtonCancel}</span></paper-button>
|
|
</li>
|
|
</ul>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|