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

Manage Page/Field Help Content

<% using (Html.BeginForm()) { %>
<%:Html.DropDownListFor(x => x.SelectedPage, Model.Pages as IEnumerable, new { @class = "text-input wide-input", size = 10 })%>
<%:Html.TextAreaFor(x => x.PageHelpText, new { @class = "text-input textarea, required", @rows = "15" })%>
<%:Html.DropDownListFor(x => x.SelectedField, Model.PageFields as IEnumerable, new { @class = "text-input wide-input", size = 10 })%>
<%:Html.TextAreaFor(x => x.FieldHelpText, new { @class = "text-input textarea, required", @rows = "15" })%>
<%} %>
<%: Html.ActionLink("Done", "Administration", "Agency", null, new { @class = "saveButton align-right" })%>