mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
--HG-- extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4042101
12 lines
566 B
Plaintext
12 lines
566 B
Plaintext
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<BlogEditViewModel>" %>
|
|
<%@ Import Namespace="Orchard.Mvc.Html"%>
|
|
<%@ Import Namespace="Orchard.Blogs.Extensions"%>
|
|
<%@ Import Namespace="Orchard.Blogs.ViewModels"%>
|
|
<% Html.Include("Head"); %>
|
|
<h2>Edit Blog</h2>
|
|
<p><a href="<%=Url.Blogs() %>">Manage Blogs</a> > Editing <strong><%=Html.Encode(Model.Name)%></strong> (#<%= Model.Id%>)</p>
|
|
<% using (Html.BeginForm()) { %>
|
|
<%= Html.ValidationSummary() %>
|
|
<%= Html.EditorForModel()%>
|
|
<% } %>
|
|
<% Html.Include("Foot"); %> |