mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
switch collapsible
This commit is contained in:
parent
45b881dd00
commit
f1eb4b1ad8
3 changed files with 99 additions and 121 deletions
|
@ -4,7 +4,7 @@
|
|||
<title>${TitleServer}</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="dashboardGeneralPage" data-role="page" class="page type-interior dashboardHomePage" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Server%20Settings" data-require="jqmcollapsible,scripts/dashboardgeneral,paper-textarea,paper-input">
|
||||
<div id="dashboardGeneralPage" data-role="page" class="page type-interior dashboardHomePage" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Server%20Settings" data-require="emby-collapsible,scripts/dashboardgeneral,paper-textarea,paper-input">
|
||||
|
||||
<div data-role="content">
|
||||
<div class="content-primary">
|
||||
|
@ -34,38 +34,32 @@
|
|||
</div>
|
||||
<br /><br />
|
||||
|
||||
<div data-role="collapsible">
|
||||
<h2>${HeaderAdvanced}</h2>
|
||||
<div>
|
||||
<br />
|
||||
<ul data-role="listview" class="ulForm">
|
||||
<li>
|
||||
<paper-input type="text" id="txtCachePath" label="${LabelCachePath}" style="display:inline-block;width:85%;"></paper-input>
|
||||
<paper-icon-button id="btnSelectCachePath" icon="search">${ButtonSelectDirectory}</paper-icon-button>
|
||||
<div class="fieldDescription">${LabelCachePathHelp}</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<emby-collapsible title="${HeaderAdvanced}">
|
||||
<br />
|
||||
<ul data-role="listview" class="ulForm">
|
||||
<li>
|
||||
<paper-input type="text" id="txtCachePath" label="${LabelCachePath}" style="display:inline-block;width:85%;"></paper-input>
|
||||
<paper-icon-button id="btnSelectCachePath" icon="search">${ButtonSelectDirectory}</paper-icon-button>
|
||||
<div class="fieldDescription">${LabelCachePathHelp}</div>
|
||||
</li>
|
||||
</ul>
|
||||
</emby-collapsible>
|
||||
|
||||
<div data-role="collapsible">
|
||||
<h2>${HeaderBranding}</h2>
|
||||
<div>
|
||||
<p>${HeaderBrandingHelp}</p>
|
||||
<br />
|
||||
<emby-collapsible title="${HeaderBranding}">
|
||||
<p>${HeaderBrandingHelp}</p>
|
||||
<br />
|
||||
|
||||
<ul data-role="listview" class="ulForm">
|
||||
<li>
|
||||
<paper-input type="text" id="txtLoginDisclaimer" label="${LabelLoginDisclaimer}"></paper-input>
|
||||
<div class="fieldDescription">${LabelLoginDisclaimerHelp}</div>
|
||||
</li>
|
||||
<li>
|
||||
<paper-textarea id="txtCustomCss" label="${LabelCustomCss}" class="mono"></paper-textarea>
|
||||
<div class="fieldDescription">${LabelCustomCssHelp}</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<ul data-role="listview" class="ulForm">
|
||||
<li>
|
||||
<paper-input type="text" id="txtLoginDisclaimer" label="${LabelLoginDisclaimer}"></paper-input>
|
||||
<div class="fieldDescription">${LabelLoginDisclaimerHelp}</div>
|
||||
</li>
|
||||
<li>
|
||||
<paper-textarea id="txtCustomCss" label="${LabelCustomCss}" class="mono"></paper-textarea>
|
||||
<div class="fieldDescription">${LabelCustomCssHelp}</div>
|
||||
</li>
|
||||
</ul>
|
||||
</emby-collapsible>
|
||||
<br />
|
||||
<ul data-role="listview" class="ulForm">
|
||||
<li>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<title>${TitleMetadata}</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="advancedMetadataConfigurationPage" data-role="page" class="page type-interior metadataConfigurationPage" data-require="jqmcollapsible,scripts/metadataadvanced,paper-checkbox,paper-input">
|
||||
<div id="advancedMetadataConfigurationPage" data-role="page" class="page type-interior metadataConfigurationPage" data-require="emby-collapsible,scripts/metadataadvanced,paper-checkbox,paper-input">
|
||||
|
||||
<div data-role="content">
|
||||
|
||||
|
@ -40,106 +40,90 @@
|
|||
</li>
|
||||
</ul>
|
||||
|
||||
<div data-role="collapsible" style="display:none;">
|
||||
<h2>${HeaderAutomaticUpdates}</h2>
|
||||
<emby-collapsible title="${HeaderAutomaticUpdates}" class="hide">
|
||||
<ul data-role="listview" class="ulForm">
|
||||
<li>
|
||||
<paper-checkbox id="chkEnableTmdbUpdates">${LabelAutomaticUpdatesTmdb}</paper-checkbox>
|
||||
<div class="fieldDescription paperCheckboxFieldDescription">${LabelAutomaticUpdatesTmdbHelp}</div>
|
||||
</li>
|
||||
<li>
|
||||
<paper-checkbox id="chkEnableTvdbUpdates">${LabelAutomaticUpdatesTvdb}</paper-checkbox>
|
||||
<div class="fieldDescription paperCheckboxFieldDescription">${LabelAutomaticUpdatesTvdbHelp}</div>
|
||||
</li>
|
||||
</ul>
|
||||
</emby-collapsible>
|
||||
|
||||
<emby-collapsible title="${HeaderChapters}">
|
||||
<br />
|
||||
<ul data-role="listview" class="ulForm" style="margin-bottom:0!important;">
|
||||
<li>
|
||||
<div class="paperCheckboxListLabel">${HeaderExtractChapterImagesFor}</div>
|
||||
<div class="paperCheckboxList">
|
||||
<paper-checkbox id="chkChaptersMovies">${OptionMovies}</paper-checkbox>
|
||||
|
||||
<paper-checkbox id="chkChaptersEpisodes">${OptionEpisodes}</paper-checkbox>
|
||||
|
||||
<paper-checkbox id="chkChaptersOtherVideos">${OptionOtherVideos}</paper-checkbox>
|
||||
</div>
|
||||
<div class="fieldDescription paperCheckboxFieldDescription">${ExtractChapterImagesHelp}</div>
|
||||
</li>
|
||||
</ul>
|
||||
<br />
|
||||
<div>
|
||||
<ul data-role="listview" class="ulForm">
|
||||
<li>
|
||||
<paper-checkbox id="chkEnableTmdbUpdates">${LabelAutomaticUpdatesTmdb}</paper-checkbox>
|
||||
<div class="fieldDescription paperCheckboxFieldDescription">${LabelAutomaticUpdatesTmdbHelp}</div>
|
||||
</li>
|
||||
<li>
|
||||
<paper-checkbox id="chkEnableTvdbUpdates">${LabelAutomaticUpdatesTvdb}</paper-checkbox>
|
||||
<div class="fieldDescription paperCheckboxFieldDescription">${LabelAutomaticUpdatesTvdbHelp}</div>
|
||||
</li>
|
||||
</ul>
|
||||
<paper-checkbox id="chkExtractChaptersDuringLibraryScan">${LabelExtractChaptersDuringLibraryScan}</paper-checkbox>
|
||||
<div class="fieldDescription paperCheckboxFieldDescription">${LabelExtractChaptersDuringLibraryScanHelp}</div>
|
||||
</div>
|
||||
</div>
|
||||
<br />
|
||||
</emby-collapsible>
|
||||
|
||||
<div data-role="collapsible">
|
||||
<h2>${HeaderChapters}</h2>
|
||||
<emby-collapsible title="Fanart.tv">
|
||||
<ul data-role="listview" class="ulForm">
|
||||
<li>
|
||||
<paper-input type="text" id="txtFanartApiKey" label="${LabelFanartApiKey}"></paper-input>
|
||||
<div class="fieldDescription">${LabelFanartApiKeyHelp}</div>
|
||||
<div class="fieldDescription"><a href="https://fanart.tv/2015/01/personal-api-keys" target="_blank">${ButtonLearnMore}</a></div>
|
||||
</li>
|
||||
<li style="display:none;">
|
||||
<input type="checkbox" id="chkEnableFanartUpdates" data-mini="true" />
|
||||
<label for="chkEnableFanartUpdates">${LabelAutomaticUpdates}</label>
|
||||
<div class="fieldDescription">${LabelAutomaticUpdatesFanartHelp}</div>
|
||||
</li>
|
||||
</ul>
|
||||
</emby-collapsible>
|
||||
|
||||
<emby-collapsible title="${HeaderImages}">
|
||||
<br />
|
||||
<div>
|
||||
<br />
|
||||
<ul data-role="listview" class="ulForm" style="margin-bottom:0!important;">
|
||||
<li>
|
||||
<div class="paperCheckboxListLabel">${HeaderExtractChapterImagesFor}</div>
|
||||
<div class="paperCheckboxList">
|
||||
<paper-checkbox id="chkChaptersMovies">${OptionMovies}</paper-checkbox>
|
||||
|
||||
<paper-checkbox id="chkChaptersEpisodes">${OptionEpisodes}</paper-checkbox>
|
||||
|
||||
<paper-checkbox id="chkChaptersOtherVideos">${OptionOtherVideos}</paper-checkbox>
|
||||
</div>
|
||||
<div class="fieldDescription paperCheckboxFieldDescription">${ExtractChapterImagesHelp}</div>
|
||||
</li>
|
||||
</ul>
|
||||
<br />
|
||||
<div>
|
||||
<paper-checkbox id="chkExtractChaptersDuringLibraryScan">${LabelExtractChaptersDuringLibraryScan}</paper-checkbox>
|
||||
<div class="fieldDescription paperCheckboxFieldDescription">${LabelExtractChaptersDuringLibraryScanHelp}</div>
|
||||
</div>
|
||||
<br />
|
||||
<paper-checkbox id="chkDownloadImagesInAdvance">${OptionDownloadImagesInAdvance}</paper-checkbox>
|
||||
<div class="fieldDescription paperCheckboxFieldDescription">${OptionDownloadImagesInAdvanceHelp}</div>
|
||||
</div>
|
||||
</div>
|
||||
<br />
|
||||
</emby-collapsible>
|
||||
|
||||
<div data-role="collapsible">
|
||||
<h2>Fanart.tv</h2>
|
||||
<div>
|
||||
<br />
|
||||
<ul data-role="listview" class="ulForm">
|
||||
<li>
|
||||
<paper-input type="text" id="txtFanartApiKey" label="${LabelFanartApiKey}"></paper-input>
|
||||
<div class="fieldDescription">${LabelFanartApiKeyHelp}</div>
|
||||
<div class="fieldDescription"><a href="https://fanart.tv/2015/01/personal-api-keys" target="_blank">${ButtonLearnMore}</a></div>
|
||||
</li>
|
||||
<li style="display:none;">
|
||||
<input type="checkbox" id="chkEnableFanartUpdates" data-mini="true" />
|
||||
<label for="chkEnableFanartUpdates">${LabelAutomaticUpdates}</label>
|
||||
<div class="fieldDescription">${LabelAutomaticUpdatesFanartHelp}</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<emby-collapsible title="${HeaderPeople}">
|
||||
<br />
|
||||
<ul data-role="listview" class="ulForm">
|
||||
<li>
|
||||
<div class="paperCheckboxListLabel">${HeaderDownloadPeopleMetadataFor}</div>
|
||||
<div class="paperCheckboxList">
|
||||
<paper-checkbox id="chkPeopleActors">${OptionActors}</paper-checkbox>
|
||||
|
||||
<div data-role="collapsible">
|
||||
<h2>${HeaderImages}</h2>
|
||||
<div>
|
||||
<br />
|
||||
<div>
|
||||
<paper-checkbox id="chkDownloadImagesInAdvance">${OptionDownloadImagesInAdvance}</paper-checkbox>
|
||||
<div class="fieldDescription paperCheckboxFieldDescription">${OptionDownloadImagesInAdvanceHelp}</div>
|
||||
</div>
|
||||
<br />
|
||||
</div>
|
||||
</div>
|
||||
<paper-checkbox id="chkPeopleComposers">${OptionComposers}</paper-checkbox>
|
||||
|
||||
<div data-role="collapsible">
|
||||
<h2>${HeaderPeople}</h2>
|
||||
<div>
|
||||
<br />
|
||||
<ul data-role="listview" class="ulForm">
|
||||
<li>
|
||||
<div class="paperCheckboxListLabel">${HeaderDownloadPeopleMetadataFor}</div>
|
||||
<div class="paperCheckboxList">
|
||||
<paper-checkbox id="chkPeopleActors">${OptionActors}</paper-checkbox>
|
||||
<paper-checkbox id="chkPeopleDirectors">${OptionDirectors}</paper-checkbox>
|
||||
|
||||
<paper-checkbox id="chkPeopleComposers">${OptionComposers}</paper-checkbox>
|
||||
<paper-checkbox id="chkPeopleGuestStars">${OptionGuestStars}</paper-checkbox>
|
||||
|
||||
<paper-checkbox id="chkPeopleDirectors">${OptionDirectors}</paper-checkbox>
|
||||
<paper-checkbox id="chkPeopleProducers">${OptionProducers}</paper-checkbox>
|
||||
|
||||
<paper-checkbox id="chkPeopleGuestStars">${OptionGuestStars}</paper-checkbox>
|
||||
<paper-checkbox id="chkPeopleWriters">${OptionWriters}</paper-checkbox>
|
||||
|
||||
<paper-checkbox id="chkPeopleProducers">${OptionProducers}</paper-checkbox>
|
||||
|
||||
<paper-checkbox id="chkPeopleWriters">${OptionWriters}</paper-checkbox>
|
||||
|
||||
<paper-checkbox id="chkPeopleOthers">${OptionOthers}</paper-checkbox>
|
||||
</div>
|
||||
<div class="fieldDescription paperCheckboxFieldDescription">${HeaderDownloadPeopleMetadataForHelp}</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<paper-checkbox id="chkPeopleOthers">${OptionOthers}</paper-checkbox>
|
||||
</div>
|
||||
<div class="fieldDescription paperCheckboxFieldDescription">${HeaderDownloadPeopleMetadataForHelp}</div>
|
||||
</li>
|
||||
</ul>
|
||||
</emby-collapsible>
|
||||
|
||||
<br /><br />
|
||||
<ul data-role="listview" class="ulForm">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<title>${TitleSync}</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="syncJobPage" data-role="page" class="page type-interior syncConfigurationPage syncJobPage" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Sync" data-require="scripts/syncjob,paper-fab,paper-item-body,paper-icon-item,jqmcollapsible">
|
||||
<div id="syncJobPage" data-role="page" class="page type-interior syncConfigurationPage syncJobPage" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Sync" data-require="scripts/syncjob,paper-fab,paper-item-body,paper-icon-item">
|
||||
|
||||
<div data-role="content">
|
||||
<div class="content-primary">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue