@using TightWiki.Models
@model TightWiki.Models.ViewModels.Admin.PageModerateViewModel
@{
Layout = "/Views/Shared/_Layout.cshtml";
var sessionState = ViewData["SessionState"] as TightWiki.SessionState ?? throw new Exception("Wiki State Context cannot be null.");
}
Page Moderate
Browse pages marked with various processing instructions to see what is in draft, pending deletion, protected, etc.
@Html.DropDownListFor(m => m.Instruction,
new SelectList(Model.Instructions),
"Select an instruction",
new { @class = "form-control", id = "instructionDropdown" })