2011-07-08 06:27:11 +03:00
@using System.Collections
@{ Layout = null; }
2011-05-28 10:16:16 +03:00
<div>
2011-07-28 01:59:48 +03:00
<div>
<input id="newSeriesLookup" class="seriesLookup" type="text" style="width: 400px" />
2011-09-09 06:52:25 +03:00
@Html.Hidden("newSeriesId", 0, new { @class = "seriesId" })
2011-07-28 01:59:48 +03:00
</div>
2011-08-23 23:31:28 +03:00
@Html.DropDownList("newSeriesPath", new SelectList((IList)ViewData["RootDirs"]), new { style = "width: 406px; margin-left: 0px;" })
2011-10-19 18:16:34 +03:00
@Html.DropDownList("qualityList", (SelectList)ViewData["QualityProfiles"], new { @class = "qualitySelector" })
2012-09-20 18:37:40 +03:00
@Html.TextBox("newStartDate", "", new { type = "date", @class = "jQuery-datepicker start-date", placeholder = "Custom Start Date", title = "Only download episodes that aired after the specified date" })
2011-07-28 01:59:48 +03:00
<button id="saveNewSeries">
2011-05-28 10:16:16 +03:00
Add</button>
2011-12-12 04:22:10 +03:00
</div>