jellyfin-web/dashboard-ui/advancedpaths.html

81 lines
4.4 KiB
HTML
Raw Normal View History

2014-03-25 14:13:55 -07:00
<!DOCTYPE html>
<html>
<head>
<title>${TitleAdvanced}</title>
2014-03-25 14:13:55 -07:00
</head>
<body>
<div id="advancedPathsPage" data-role="page" class="page type-interior advancedConfigurationPage">
<div data-role="content">
<div class="content-primary">
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
2014-04-03 15:50:04 -07:00
<a href="advanced.html" data-role="button">${TabGeneral}</a>
2014-04-25 13:47:56 -07:00
<a href="notificationsettings.html" data-role="button">${TabNotifications}</a>
<a href="#" data-role="button" class="ui-btn-active">${TabPaths}</a>
<a href="advancedserversettings.html" data-role="button">${TabServer}</a>
<a href="encodingsettings.html" data-role="button">${TabTranscoding}</a>
2014-03-25 14:13:55 -07:00
</div>
<form class="advancedPathsForm">
<p>${LabelCustomPaths}</p>
2014-03-25 14:13:55 -07:00
<br />
<ul data-role="listview" class="ulForm">
<li>
<label for="txtCachePath">${LabelCachePath}</label>
2014-03-25 14:13:55 -07:00
<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">${LabelCachePathHelp}</div>
2014-03-25 14:13:55 -07:00
</li>
<li>
<label for="txtItemsByNamePath">${LabelImagesByNamePath}</label>
2014-03-25 14:13:55 -07:00
<div style="display: inline-block; width: 92%;">
<input type="text" id="txtItemsByNamePath" name="txtItemsByNamePath" />
</div>
<button id="btnSelectIBNPath" type="button" data-icon="search" data-iconpos="notext" data-inline="true">${ButtonSelectDirectory}</button>
<div class="fieldDescription">${LabelImagesByNamePathHelp}</div>
2014-03-25 14:13:55 -07:00
</li>
<li>
<label for="txtMetadataPath">${LabelMetadataPath}</label>
2014-03-25 14:13:55 -07:00
<div style="display: inline-block; width: 92%;">
<input type="text" id="txtMetadataPath" name="txtMetadataPath" />
</div>
<button id="btnSelectMetadataPath" type="button" data-icon="search" data-iconpos="notext" data-inline="true">${ButtonSelectDirectory}</button>
<div class="fieldDescription">${LabelMetadataPathHelp}</div>
2014-03-25 14:13:55 -07:00
</li>
<li>
<label for="txtTranscodingTempPath">${LabelTranscodingTempPath}</label>
2014-03-25 14:13:55 -07:00
<div style="display: inline-block; width: 92%;">
<input type="text" id="txtTranscodingTempPath" name="txtTranscodingTempPath" data-mini="true" />
</div>
<button id="btnSelectTranscodingTempPath" type="button" data-icon="search" data-iconpos="notext" data-inline="true">${ButtonSelectDirectory}</button>
2014-03-25 14:13:55 -07:00
<div class="fieldDescription">
${LabelTranscodingTempPathHelp}
2014-03-25 14:13:55 -07:00
</div>
</li>
</ul>
<br />
<ul data-role="listview" class="ulForm">
<li>
<button type="submit" data-theme="b" data-icon="check" data-mini="true">
${ButtonSave}
2014-03-25 14:13:55 -07:00
</button>
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete" data-mini="true">
${ButtonCancel}
2014-03-25 14:13:55 -07:00
</button>
</li>
</ul>
</form>
</div>
</div>
<script type="text/javascript">
$('.advancedPathsForm').off('submit', AdvancedPathsPage.onSubmit).on('submit', AdvancedPathsPage.onSubmit);
</script>
</div>
</body>
</html>