More admin cleanup and consolidation...

--HG--
extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4042981
This commit is contained in:
skewed
2009-12-02 22:49:30 +00:00
parent 46f5a1b43e
commit 82752d77a9
43 changed files with 215 additions and 368 deletions
@@ -3,7 +3,7 @@
<%@ Import Namespace="Orchard.Utility"%>
<%@ Import Namespace="Orchard.CmsPages.Services.Templates"%>
<%@ Import Namespace="Orchard.Mvc.Html" %>
<% Html.Include("Head"); %>
<% Html.Include("AdminHead"); %>
<h2>Delete pages</h2>
<p>Are you sure you want to delete the pages?</p>
<% using (Html.BeginForm()) { %>
@@ -22,4 +22,4 @@
} %>
</fieldset>
<% } %>
<% Html.Include("Foot"); %>
<% Html.Include("AdminFoot"); %>
@@ -3,7 +3,7 @@
<%@ Import Namespace="Orchard.Utility"%>
<%@ Import Namespace="Orchard.CmsPages.Services.Templates"%>
<%@ Import Namespace="Orchard.Mvc.Html" %>
<% Html.Include("Head"); %>
<% Html.Include("AdminHead"); %>
<% using (Html.BeginForm()) { %>
<h2>Publish later</h2>
<p>Enter the scheduled publication date:</p>
@@ -22,4 +22,4 @@
} %>
</fieldset>
<% } %>
<% Html.Include("Foot"); %>
<% Html.Include("AdminFoot"); %>
@@ -1,7 +1,7 @@
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<Orchard.CmsPages.ViewModels.ChooseTemplateViewModel>" %>
<%@ Import Namespace="Orchard.CmsPages.Services.Templates"%>
<%@ Import Namespace="Orchard.Mvc.Html" %>
<% Html.Include("Head"); %>
<% Html.Include("AdminHead"); %>
<h2>Change Template</h2>
<p>Select your layout from one of the templates below.</p>
<% using (Html.BeginForm()) {
@@ -20,4 +20,4 @@
<%=Html.ActionLink("Cancel", "Edit", new { Id = ViewContext.RouteData.GetRequiredString("id") }, new { @class = "cancel" })%>
</div><%
} %>
<% Html.Include("Foot"); %>
<% Html.Include("AdminFoot"); %>
@@ -1,10 +1,10 @@
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<Orchard.CmsPages.ViewModels.PageCreateViewModel>" %>
<%@ Import Namespace="Orchard.Mvc.Html" %>
<% Html.Include("Head"); %>
<% Html.Include("AdminHead"); %>
<h2>Add a Page</h2>
<p>Select your layout from one of the templates below.</p>
<% using (Html.BeginForm()) { %>
<%=Html.ValidationSummary() %>
<%=Html.EditorForModel() %>
<% } %>
<% Html.Include("Foot"); %>
<% Html.Include("AdminFoot"); %>
@@ -1,7 +1,7 @@
<%@ Page Language="C#" Inherits="Orchard.Mvc.ViewPage<Orchard.CmsPages.ViewModels.PageEditViewModel>" %>
<%@ Import Namespace="Orchard.CmsPages.Models" %>
<%@ Import Namespace="Orchard.Mvc.Html" %>
<% Html.Include("Head"); %>
<% Html.Include("AdminHead"); %>
<h2><%=_Encoded("Edit Page") %></h2>
<p class="bottomSpacer"><%=_Encoded("about setting up a page") %></p>
<%=Html.ValidationSummary() %>
@@ -47,4 +47,4 @@
</div>
<% } %>
</div>
<% Html.Include("Foot"); %>
<% Html.Include("AdminFoot"); %>
@@ -1,6 +1,6 @@
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<IEnumerable<Orchard.CmsPages.Models.Page>>" %>
<%@ Import Namespace="Orchard.Mvc.Html" %>
<% Html.Include("Head"); %>
<% Html.Include("AdminHead"); %>
<h2>Export</h2>
<p>Possible text about setting up a page goes here. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla erat turpis, blandit eget feugiat nec, tempus vel quam. Mauris et neque eget justo suscipit blandit.</p>
<ol>
@@ -16,4 +16,4 @@
</li><%
} %>
</ol>
<% Html.Include("Foot"); %>
<% Html.Include("AdminFoot"); %>
@@ -3,7 +3,7 @@
<%@ Import Namespace="Orchard.CmsPages.ViewModels"%>
<%@ Import Namespace="Orchard.Mvc.Html" %>
<%-- todo: (heskew) localize --%>
<% Html.Include("Head"); %>
<% Html.Include("AdminHead"); %>
<h2>Manage Pages</h2>
<p>Possible text about setting up a page goes here. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla erat turpis, blandit eget feugiat nec, tempus vel quam. Mauris et neque eget justo suscipit blandit.</p>
<% using (Html.BeginForm()) { %>
@@ -97,4 +97,4 @@
</fieldset>
<div class="manage"><%=Html.ActionLink("Add a page", "Create", new {}, new { @class = "button"}) %></div>
<% } %>
<% Html.Include("Foot"); %>
<% Html.Include("AdminFoot"); %>