mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-11 13:32:42 +01:00
9caacc4809
Editor should support about 40 seasons without scrolling (TvDb doesn't list all seasons for large series) Removed &pp=3 from SabProvider (it will use SAB's configured Post Processing value).
16 lines
498 B
Plaintext
16 lines
498 B
Plaintext
@using NzbDrone.Web.Helpers;
|
|
@using NzbDrone.Web.Models;
|
|
@model SeasonEditModel
|
|
|
|
@using (Html.BeginCollectionItem("seasons"))
|
|
{
|
|
<fieldset style="display: inline; border-color: lightgrey; width: 26%; margin-bottom: 2px; padding-bottom: 1px; padding-top: 1px;">
|
|
@Html.DisplayFor(m => m.SeasonString)
|
|
<span style="float: right;">@Html.CheckBoxFor(m => m.Monitored)</span>
|
|
|
|
@Html.HiddenFor(m => m.SeasonId)
|
|
@Html.HiddenFor(m => m.SeasonNumber)
|
|
</fieldset>
|
|
}
|
|
|