<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %> Edit

<%: Html.DisplayTextFor(model => model.Title) %>

<% Html.EnableClientValidation(); %> <% using (Html.BeginForm("Edit", "Series", FormMethod.Post, new { id = "form", name = "form" })) { %>
Edit
<%: Html.LabelFor(model => model.Path) %>
<%: Html.TextBoxFor(model => model.Path) %> <%: 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 })%>