@model NzbDrone.Core.Repository.Series @section TitleContent{ Edit } @section Scripts{ } @section MainContent{

@Html.DisplayTextFor(model => model.Title)

@using (Html.BeginForm("Edit", "Series", FormMethod.Post, new { id = "form", name = "form" })) {
Edit
@Html.LabelFor(model => model.Path)
@Html.TextBoxFor(model => model.Path, new { style = "width: 250" }) @Html.ValidationMessageFor(model => model.Path)
@Html.LabelFor(model => model.Monitored)
@Html.CheckBoxFor(model => model.Monitored) @Html.ValidationMessageFor(model => model.Monitored)
@Html.LabelFor(model => model.SeasonFolder)
@Html.CheckBoxFor(model => model.SeasonFolder) @Html.ValidationMessageFor(model => model.SeasonFolder)
@Html.LabelFor(model => model.QualityProfileId)
@Html.DropDownListFor(model => model.QualityProfileId, (SelectList) ViewData["SelectList"]) @Html.ValidationMessageFor(model => model.QualityProfileId)

}
@Html.ActionLink("Back to Show", "Details", new {seriesId = Model.SeriesId}) | @Html.ActionLink("Back to List", "Index") @Html.ActionLink("Delete Series", "Delete", new {seriesId = Model.SeriesId})
}