2011-07-07 20:27:11 -07:00
|
|
|
@using System.Collections
|
|
|
|
@{ Layout = null; }
|
2011-05-28 00:16:16 -07:00
|
|
|
<div>
|
2011-07-27 15:59:48 -07:00
|
|
|
<div>
|
|
|
|
<input id="newSeriesLookup" class="seriesLookup" type="text" style="width: 400px" />
|
2011-09-08 20:52:25 -07:00
|
|
|
@Html.Hidden("newSeriesId", 0, new { @class = "seriesId" })
|
2011-07-27 15:59:48 -07:00
|
|
|
</div>
|
2011-08-23 13:31:28 -07:00
|
|
|
@Html.DropDownList("newSeriesPath", new SelectList((IList)ViewData["RootDirs"]), new { style = "width: 406px; margin-left: 0px;" })
|
2011-10-19 08:16:34 -07:00
|
|
|
@Html.DropDownList("qualityList", (SelectList)ViewData["QualityProfiles"], new { @class = "qualitySelector" })
|
2011-07-27 15:59:48 -07:00
|
|
|
<button id="saveNewSeries">
|
2011-05-28 00:16:16 -07:00
|
|
|
Add</button>
|
2011-12-11 17:22:10 -08:00
|
|
|
</div>
|