mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
56 lines
2.6 KiB
HTML
56 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>DLNA</title>
|
|
</head>
|
|
<body>
|
|
<div id="dlnaSettingsPage" data-role="page" class="page type-interior adminPage dlnaPage">
|
|
|
|
<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">${TabSettings}</a>
|
|
<a href="dlnaprofiles.html" data-role="button">Profiles</a>
|
|
</div>
|
|
|
|
<form class="dlnaSettingsForm">
|
|
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<label for="chkEnablePlayTo">Enable DLNA Play To</label>
|
|
<input type="checkbox" id="chkEnablePlayTo" data-mini="true" />
|
|
<div class="fieldDescription">Media Browser can detect devices within your network and offer the ability to remote control them.</div>
|
|
</li>
|
|
<li>
|
|
<label for="chkEnableDlnaDebugLogging">Enable DLNA debug logging</label>
|
|
<input type="checkbox" id="chkEnableDlnaDebugLogging" data-mini="true" />
|
|
<div class="fieldDescription">This will create large log files and should only be used as needed for troubleshooting purposes.</div>
|
|
</li>
|
|
<li>
|
|
<label for="txtClientDiscoveryInterval">Client discovery interval (seconds)</label>
|
|
<input type="number" id="txtClientDiscoveryInterval" data-mini="true" min="1" max="300" />
|
|
<div class="fieldDescription">Determines the duration in seconds of the interval between SSDP searches performed by Media Browser.</div>
|
|
</li>
|
|
<li>
|
|
<button type="submit" data-theme="b" data-icon="check">
|
|
Save
|
|
</button>
|
|
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete">
|
|
Cancel
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
$('.dlnaSettingsForm').off('submit', DlnaSettingsPage.onSubmit).on('submit', DlnaSettingsPage.onSubmit);
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html>
|