mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 16:32:56 +01:00
6c78187601
New: Ability to skip episodes that aired before a certain date, per series.
13 lines
717 B
Plaintext
13 lines
717 B
Plaintext
@using System.Collections
|
|
@{ Layout = null; }
|
|
<div>
|
|
<div>
|
|
<input id="newSeriesLookup" class="seriesLookup" type="text" style="width: 400px" />
|
|
@Html.Hidden("newSeriesId", 0, new { @class = "seriesId" })
|
|
</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" })
|
|
@Html.TextBox("newAiredAfter", "", new { type = "date", @class = "jQuery-dateTime aired-after", title = "Only download episodes that aired after the choosen date" })
|
|
<button id="saveNewSeries">
|
|
Add</button>
|
|
</div> |