forked from MediaBrowser/Emby.Plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
94 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,112 +1,91 @@ | ||
<div class="dialogHeader" style="margin:0;"> | ||
<button is="paper-icon-button-light" class="btnCancel" tabindex="-1"><iron-icon icon="arrow-back"></iron-icon></button> | ||
<div class="dialogHeader" style="margin:0 0 2em;"> | ||
<button is="paper-icon-button-light" class="btnCancel autoSize" tabindex="-1"> | ||
<i class="md-icon"></i> | ||
</button> | ||
<div class="dialogHeaderTitle"> | ||
</div> | ||
</div> | ||
|
||
<style> | ||
paper-tabs { | ||
background-color: #020202; | ||
color: #fff; | ||
box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
paper-tab { | ||
text-transform: uppercase; | ||
font-weight: 400; | ||
} | ||
|
||
paper-tabs #selectionBar { | ||
background-color: #52B54B !important; | ||
} | ||
|
||
paper-tabs paper-ripple { | ||
color: #52B54B !important; | ||
} | ||
</style> | ||
|
||
<paper-tabs id="paperTabs" hidescrollbuttons style="padding: 0;"> | ||
<paper-tab> | ||
<div>Series Episode</div> | ||
</paper-tab> | ||
|
||
<paper-tab> | ||
<div>Organize Movie</div> | ||
</paper-tab> | ||
</paper-tabs> | ||
<div id="tabcontainer" class="readOnlyContent" style="margin:auto;"> | ||
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true" style="margin-top: 1em"> | ||
<a id="episode" href="#" data-role="button" class="ui-btn-active">Series Episode</a> | ||
<a id="movie" href="#" data-role="button">Organize Movie</a> | ||
</div> | ||
</div> | ||
|
||
<div style="margin-top:20px;"> | ||
<div id="organizeSeries"> | ||
<form class="episodeCorrectionForm" style="margin:auto;"> | ||
<form id="organizeSeries" class="episodeCorrectionForm" style="margin:auto;"> | ||
|
||
<p><b>Filename:</b><br /><span class="inputFile"></span></p> | ||
<p class="paraInputSeriesName"><b>Extracted Series Name:</b><br /><span class="inputSeriesName"></span></p> | ||
<p class="paraInputYear"><b>Extracted Year::</b><br /><span class="inputYear"></span></p> | ||
<p><b>Filename:</b><br /><span class="inputFile"></span></p> | ||
<p class="paraInputSeriesName"><b>Extracted Series Name:</b><br /><span class="inputSeriesName"></span></p> | ||
<p class="paraInputYear"><b>Extracted Year::</b><br /><span class="inputYear"></span></p> | ||
|
||
<div style="margin: 2em 0 1em;"> | ||
<div style="width:85%;display:inline-block;"> | ||
<label for="selectSeries" class="selectLabel">${LabelSeries}</label> | ||
<select id="selectSeries" data-mini="true" required="required"></select> | ||
</div> | ||
<button type="button" is="paper-icon-button-light" id="btnNewSeries" title="${ButtonNew}"><iron-icon icon="add"></iron-icon></button> | ||
</div> | ||
<div class="fldSelectSeriesFolder hide" style="margin: 1em 0 1em;"> | ||
<div style="width:100%;display:inline-block;"> | ||
<label for="selectSeriesFolder" class="selectLabel">Series Root Folder</label> | ||
<select id="selectSeriesFolder" data-mini="true"></select> | ||
</div> | ||
</div> | ||
<div style="margin: 1em 0;"> | ||
<paper-input id="txtSeason" type="number" pattern="[0-9]*" required min="0" label="${LabelSeasonNumber}"></paper-input> | ||
</div> | ||
<div style="margin: 1em 0;"> | ||
<paper-input id="txtEpisode" type="number" pattern="[0-9]*" required min="0" label="${LabelEpisodeNumber}"></paper-input> | ||
</div> | ||
<div style="margin: 1em 0;"> | ||
<paper-input id="txtEndingEpisode" type="number" pattern="[0-9]*" min="0" label="${LabelEndingEpisodeNumber}"></paper-input> | ||
<div class="fieldDescription">${LabelEndingEpisodeNumberHelp}</div> | ||
</div> | ||
<div class="fldRemember hide"> | ||
<br /> | ||
<paper-checkbox type="checkbox" id="chkRememberCorrection">${OptionRememberOrganizeCorrection} <span class="extractedName" style="font-weight: bold; font-style: italic" /></paper-checkbox> | ||
</div> | ||
<br /> | ||
<button type="submit" data-role="none" class="clearButton"> | ||
<paper-button raised class="submit block"><iron-icon icon="check"></iron-icon><span>${ButtonOk}</span></paper-button> | ||
</button> | ||
<input id="hfResultId" type="hidden" /> | ||
</form> | ||
<div style="margin: 2em 0 1em;"> | ||
<div style="width:85%;display:inline-block;"> | ||
<label for="selectSeries" class="selectLabel">${LabelSeries}</label> | ||
<select id="selectSeries" data-mini="true" required="required"></select> | ||
</div> | ||
<button type="button" is="paper-icon-button-light" id="btnNewSeries" class="autoSize" title="${ButtonNew}"> | ||
<i class="md-icon">add</i> | ||
</button> | ||
</div> | ||
<div class="fldSelectSeriesFolder hide" style="margin: 1em 0 1em;"> | ||
<div style="width:100%;display:inline-block;"> | ||
<label for="selectSeriesFolder" class="selectLabel">Series Root Folder</label> | ||
<select id="selectSeriesFolder" data-mini="true"></select> | ||
</div> | ||
</div> | ||
<div style="margin: 1em 0;"> | ||
<paper-input id="txtSeason" type="number" pattern="[0-9]*" required min="0" label="${LabelSeasonNumber}"></paper-input> | ||
</div> | ||
<div style="margin: 1em 0;"> | ||
<paper-input id="txtEpisode" type="number" pattern="[0-9]*" required min="0" label="${LabelEpisodeNumber}"></paper-input> | ||
</div> | ||
<div style="margin: 1em 0;"> | ||
<paper-input id="txtEndingEpisode" type="number" pattern="[0-9]*" min="0" label="${LabelEndingEpisodeNumber}"></paper-input> | ||
<div class="fieldDescription">${LabelEndingEpisodeNumberHelp}</div> | ||
</div> | ||
<div class="fldRemember hide"> | ||
<br /> | ||
<paper-checkbox type="checkbox" id="chkRememberCorrection">${OptionRememberOrganizeCorrection} <span class="extractedName" style="font-weight: bold; font-style: italic" /></paper-checkbox> | ||
</div> | ||
<br /> | ||
<button is="emby-button" type="submit" class="raised submit block"> | ||
<i class="md-icon">check</i> | ||
<span>${ButtonOk}</span> | ||
</button> | ||
<input id="hfResultId" type="hidden" /> | ||
</form> | ||
|
||
<div id="organizeMovies" class="hide"> | ||
<form class="organizeMovieForm" style="margin:auto;"> | ||
<form class="organizeMovieForm" id="organizeMovies" class="hide" style="margin:auto;"> | ||
|
||
<p><b>Filename:</b><br /><span class="inputFile2"></span></p> | ||
<p class="paraInputSeriesName2"><b>Extracted Name:</b><br /><span class="inputSeriesName2"></span></p> | ||
<p class="paraInputYear2"><b>Extracted Year::</b><br /><span class="inputYear2"></span></p> | ||
<p><b>Filename:</b><br /><span class="inputFile2"></span></p> | ||
<p class="paraInputSeriesName2"><b>Extracted Name:</b><br /><span class="inputSeriesName2"></span></p> | ||
<p class="paraInputYear2"><b>Extracted Year::</b><br /><span class="inputYear2"></span></p> | ||
|
||
<div style="margin: 2em 0 1em;"> | ||
<button type="button" data-role="none" class="clearButton" id="btnIdentifyMovie"> | ||
<paper-button raised class="submit block"><iron-icon icon="search"></iron-icon><span>Identify Movie</span></paper-button> | ||
</button> | ||
</div> | ||
<div style="margin: 2em 0 1em;"> | ||
<button is="emby-button" type="button" class="raised block" id="btnIdentifyMovie"> | ||
<i class="md-icon">check</i> | ||
<span>Identify Movie</span> | ||
</button> | ||
</div> | ||
|
||
<div id="identifiedMovie" class="hide"> | ||
<div style="margin: 1em 0;"> | ||
<paper-input id="txtSelectedMovie" required readonly label="Identified Movie"></paper-input> | ||
</div> | ||
<br /> | ||
<div class="fldSelectMovieFolder" style="margin: 1em 0 1em;"> | ||
<div style="width:100%;display:inline-block;"> | ||
<label for="selectMovieFolder" class="selectLabel">Movie Root Folder</label> | ||
<select id="selectMovieFolder" data-mini="true"></select> | ||
</div> | ||
</div> | ||
<button type="submit" data-role="none" class="clearButton"> | ||
<paper-button raised class="submit block"><iron-icon icon="check"></iron-icon><span>${ButtonOk}</span></paper-button> | ||
</button> | ||
<div id="identifiedMovie" class="hide"> | ||
<div style="margin: 1em 0;"> | ||
<paper-input id="txtSelectedMovie" required readonly label="Identified Movie"></paper-input> | ||
</div> | ||
<br /> | ||
<div class="fldSelectMovieFolder" style="margin: 1em 0 1em;"> | ||
<div style="width:100%;display:inline-block;"> | ||
<label for="selectMovieFolder" class="selectLabel">Movie Root Folder</label> | ||
<select id="selectMovieFolder" data-mini="true"></select> | ||
</div> | ||
<input id="hfResultIdMovie" type="hidden" /> | ||
</form> | ||
</div> | ||
<button is="emby-button" type="submit" class="raised submit block"> | ||
<i class="md-icon">check</i> | ||
<span>${ButtonOk}</span> | ||
</button> | ||
</div> | ||
</div> | ||
<input id="hfResultIdMovie" type="hidden" /> | ||
</form> | ||
|
||
<div id="bottomspace" style="min-height: 1em;" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters