@using NzbDrone.Web.Helpers;
@using NzbDrone.Web.Models;
@model NzbDrone.Web.Models.SeriesModel
@{
Layout = null;
}
@Html.HiddenFor(m => m.SeriesId)
@Html.LabelFor(m => m.Path)
@Html.TextBoxFor(m => m.Path, new { style = "width: 300" })
@Html.LabelFor(m => m.Monitored)
@Html.CheckBoxFor(m => m.Monitored, new { style = "margin-right:287px" })
@Html.LabelFor(m => m.SeasonFolder)
@Html.CheckBoxFor(m => m.SeasonFolder, new { style = "margin-right:287px" })
@Html.LabelFor(m => m.QualityProfileId)
@Html.DropDownListFor(model => model.QualityProfileId, (SelectList)ViewData["SelectList"], new { style = "margin-left:40px" })
@Html.LabelFor(m => m.SeasonEditor)