Sonarr/NzbDrone.Web/Views/AddSeries/AddNew.cshtml

13 lines
754 B
Plaintext
Raw Normal View History

2011-07-08 03:27:11 +00:00
@using System.Collections
@{ Layout = null; }
<div>
2011-07-27 22:59:48 +00:00
<div>
<input id="newSeriesLookup" class="seriesLookup" type="text" style="width: 400px" />
@Html.Hidden("newSeriesId", 0, new { @class = "seriesId" })
2011-07-27 22:59:48 +00:00
</div>
@Html.DropDownList("newSeriesPath", new SelectList((IList)ViewData["RootDirs"]), new { style = "width: 406px; margin-left: 0px;" })
@Html.DropDownList("qualityList", (SelectList)ViewData["QualityProfiles"], new { @class = "qualitySelector" })
2012-09-20 15:37:40 +00: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-27 22:59:48 +00:00
<button id="saveNewSeries">
Add</button>
</div>