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