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