mirror of https://github.com/Radarr/Radarr
15 lines
640 B
Plaintext
15 lines
640 B
Plaintext
@using System.Collections
|
|
@using NzbDrone.Web.Models
|
|
@{ Layout = null; }
|
|
<div>
|
|
<div>
|
|
<input id="newSeriesLookup" class="seriesLookup" type="text" style="width: 400px" />
|
|
</div>
|
|
@*<input id="newSeriesPath" class="folderLookup" type="text" style="width: 400px" />*@
|
|
@Html.DropDownList("newSeriesPath", new SelectList((IList)ViewData["RootDirs"]), new { style = "width: 406px; margin-left: 0px;" })
|
|
@Html.DropDownList("qualityList", new SelectList((IList)ViewData["QualityList"], "QualityProfileId", "Name"), new { @class = "qualitySelector" })
|
|
<button id="saveNewSeries">
|
|
Add</button>
|
|
</div>
|
|
<br />
|