mirror of https://github.com/Radarr/Radarr
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>
|
||
|
}
|
||
|
|