mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
8c82133ab0
Saving Series Grid Edit shows AJAX wheel now, so you know its actually working.
18 lines
765 B
Plaintext
18 lines
765 B
Plaintext
@using NzbDrone.Web.Helpers;
|
|
@using NzbDrone.Web.Models;
|
|
@model SeasonEditModel
|
|
|
|
@using (Html.BeginCollectionItem("SeasonEditor"))
|
|
{
|
|
var idClean = ViewData.TemplateInfo.HtmlFieldPrefix.Replace('[', '_').Replace(']', '_');
|
|
|
|
<fieldset style="display: inline; border-color: lightgrey; width: 22.8%; margin-bottom: 2px; margin-right: 0px; margin-left: 0px; padding-bottom: 1px; padding-top: 1px; padding-left: 2px; padding-right: 2px;">
|
|
|
|
@Html.DisplayFor(m => m.SeasonString)
|
|
<span style="float: right;">@Html.CheckBoxFor(m => m.Monitored, new { @class = "chkbox" })</span>
|
|
|
|
@Html.HiddenFor(m => m.SeriesId)
|
|
@Html.HiddenFor(m => m.SeasonNumber)
|
|
@Html.Hidden(idClean, new { @class = "cleanId", })
|
|
</fieldset>
|
|
} |