mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00

--HG-- extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4044471
11 lines
353 B
Plaintext
11 lines
353 B
Plaintext
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<PageEditViewModel>" %>
|
|
|
|
<%@ Import Namespace="Orchard.Sandbox.ViewModels" %>
|
|
<%@ Import Namespace="Orchard.Mvc.Html" %>
|
|
<h3>
|
|
Edit Page</h3>
|
|
<%using (Html.BeginFormAntiForgeryPost()) { %>
|
|
<%=Html.EditorForItem(Model.Page) %>
|
|
<input type="submit" name="submit" value="Save" />
|
|
<%} %>
|