there's no content for this blog post
" %>There is no current theme in the application. The built-in theme will be used.
<%=Html.ActionLink("Install a new Theme", "Install") %>
" alt="<%= Model.CurrentTheme.DisplayName %>" />
- By <%= Model.CurrentTheme.Author %>
- <%= Model.CurrentTheme.Version %>
- <%= Model.CurrentTheme.Description %>
- <%= Model.CurrentTheme.HomePage %>
- <%=Html.ActionLink("Install a new Theme", "Install") %>
-
" alt="<%= theme.DisplayName %>" />
- By <%= theme.Author %>
- <%= theme.Version %>
- <%= theme.Description %>
- <%= theme.HomePage %>
- <%=Html.ActionLink("Activate", "Activate", new {themeName = theme.ThemeName}) %> | <%=Html.ActionLink("Uninstall", "Uninstall", new {themeName = theme.ThemeName}) %>
-
There is no current theme in the application. The built-in theme will be used.
<%=Html.ActionLink("Install a new Theme", "Install") %>
" alt="<%= Model.CurrentTheme.DisplayName %>" />
+ By <%= Model.CurrentTheme.Author %>
+ <%= Model.CurrentTheme.Version %>
+ <%= Model.CurrentTheme.Description %>
+ <%= Model.CurrentTheme.HomePage %>
+ <%=Html.ActionLink("Install a new Theme", "Install") %>
+
" alt="<%= theme.DisplayName %>" />
+ By <%= theme.Author %>
+ <%= theme.Version %>
+ <%= theme.Description %>
+ <%= theme.HomePage %>
+ <%=Html.ActionLink("Activate", "Activate", new {themeName = theme.ThemeName}) %> | <%=Html.ActionLink("Uninstall", "Uninstall", new {themeName = theme.ThemeName}) %>
+
All of the blogs.
<% +if (Model.Blogs.Count() > 0) { %> +<%=Html.UnorderedList(Model.Blogs, (b, i) => Html.DisplayForItem(b).ToHtmlString(), "blogs contentItems") %><% +} +else { %> +No blogs found.
<% +} %> \ No newline at end of file diff --git a/src/Orchard.Web/Packages/Orchard.Blogs/Views/Blog/List.aspx b/src/Orchard.Web/Packages/Orchard.Blogs/Views/Blog/List.aspx deleted file mode 100644 index 884887dfc..000000000 --- a/src/Orchard.Web/Packages/Orchard.Blogs/Views/Blog/List.aspx +++ /dev/null @@ -1,17 +0,0 @@ -<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPageLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
<% - if (Model.Blogs.Count() > 0) { %> - <%=Html.UnorderedList(Model.Blogs, (b, i) => Html.DisplayForItem(b).ToHtmlString(), "blogs contentItems") %><% - } - else { %> -No blogs found.
<% - } %> -Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
<% +if (Model.Blogs.Count() > 0) { %> + +<%=Html.UnorderedList(Model.Blogs, (b, i) => Html.DisplayForItem(b).ToHtmlString(), "blogs contentItems") %> +<% +} else { %> + <% +} %> \ No newline at end of file diff --git a/src/Orchard.Web/Packages/Orchard.Blogs/Views/Blog/ListForAdmin.aspx b/src/Orchard.Web/Packages/Orchard.Blogs/Views/Blog/ListForAdmin.aspx deleted file mode 100644 index 844e0bcbd..000000000 --- a/src/Orchard.Web/Packages/Orchard.Blogs/Views/Blog/ListForAdmin.aspx +++ /dev/null @@ -1,16 +0,0 @@ -<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPageLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
<% -if (Model.Blogs.Count() > 0) { %> - - <%=Html.UnorderedList(Model.Blogs, (b, i) => Html.DisplayForItem(b).ToHtmlString(), "blogs contentItems") %> - <% -} else { %> - <% -} %> -<% Html.Include("AdminFoot"); %> \ No newline at end of file diff --git a/src/Orchard.Web/Packages/Orchard.Blogs/Views/BlogPost/Create.ascx b/src/Orchard.Web/Packages/Orchard.Blogs/Views/BlogPost/Create.ascx new file mode 100644 index 000000000..ee65304ee --- /dev/null +++ b/src/Orchard.Web/Packages/Orchard.Blogs/Views/BlogPost/Create.ascx @@ -0,0 +1,8 @@ +<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<%=Model.Item.Description%>
+ +<%--TODO: (erikpo) Need to figure out which zones should be displayed in this template--%> +<%=Html.DisplayZonesAny() %> + +<%--<% +if (Model.Posts.Count() > 0) { %> +<%=Html.UnorderedList(Model.Posts, (p, i) => Html.DisplayFor(blog => p, "BlogPostPreviewForAdmin").ToHtmlString(), "contentItems")%> +<% +} else { %> + <% +} %>--%> \ No newline at end of file diff --git a/src/Orchard.Web/Packages/Orchard.Blogs/Views/Shared/DisplayTemplates/Blog/Summary.ascx b/src/Orchard.Web/Packages/Orchard.Blogs/Views/Shared/DisplayTemplates/Blog/Summary.ascx new file mode 100644 index 000000000..2c0cd9a2c --- /dev/null +++ b/src/Orchard.Web/Packages/Orchard.Blogs/Views/Shared/DisplayTemplates/Blog/Summary.ascx @@ -0,0 +1,10 @@ +<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<%=Model.Item.Description %>
+<%--TODO: (erikpo) Need to figure out which zones should be displayed in this template--%> +<%--<%=Html.DisplayZonesAny() %>--%> \ No newline at end of file diff --git a/src/Orchard.Web/Packages/Orchard.Blogs/Views/Shared/DisplayTemplates/Blog/SummaryAdmin.ascx b/src/Orchard.Web/Packages/Orchard.Blogs/Views/Shared/DisplayTemplates/Blog/SummaryAdmin.ascx new file mode 100644 index 000000000..6330eddd1 --- /dev/null +++ b/src/Orchard.Web/Packages/Orchard.Blogs/Views/Shared/DisplayTemplates/Blog/SummaryAdmin.ascx @@ -0,0 +1,21 @@ +<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl[list of authors] [modify blog access]
--%> +<%=Model.Item.Description %>
++ <%-- todo: (heskew) make into a ul --%> + + Manage Blog + Edit Blog + View Blog + New Post + + Remove Blog +
\ No newline at end of file diff --git a/src/Orchard.Web/Packages/Orchard.Blogs/Views/Shared/DisplayTemplates/BlogPost/Detail.ascx b/src/Orchard.Web/Packages/Orchard.Blogs/Views/Shared/DisplayTemplates/BlogPost/Detail.ascx new file mode 100644 index 000000000..cd9b28cfb --- /dev/null +++ b/src/Orchard.Web/Packages/Orchard.Blogs/Views/Shared/DisplayTemplates/BlogPost/Detail.ascx @@ -0,0 +1,14 @@ +<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControlthere's no content for this blog post
" %>there's no content for this blog post
"%>+ <%-- todo: (heskew) make into a ul --%> + + Edit Post + View Post<% + if (Model.Item.Published == null) { // todo: (heskew) be smart about this and maybe have other contextual actions - including view/preview for view up there ^^ %> + Publish Post Now + <% } %> + + Remove Post +
\ No newline at end of file diff --git a/src/Orchard.Web/Packages/Orchard.Blogs/Views/Shared/EditorTemplates/Blog/Detail.ascx b/src/Orchard.Web/Packages/Orchard.Blogs/Views/Shared/EditorTemplates/Blog/Detail.ascx new file mode 100644 index 000000000..21dd49db8 --- /dev/null +++ b/src/Orchard.Web/Packages/Orchard.Blogs/Views/Shared/EditorTemplates/Blog/Detail.ascx @@ -0,0 +1,6 @@ +<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControlAre you sure you want to delete the pages?
- <% using (Html.BeginForm()) { %> - <%= Html.ValidationSummary() %> - - <% } %> -<% Html.Include("AdminFoot"); %> \ No newline at end of file +Are you sure you want to delete the pages?
+<% using (Html.BeginForm()) { %> + <%= Html.ValidationSummary() %> + +<% } %> \ No newline at end of file diff --git a/src/Orchard.Web/Packages/Orchard.CmsPages/Views/Admin/BulkPublishLater.aspx b/src/Orchard.Web/Packages/Orchard.CmsPages/Views/Admin/BulkPublishLater.aspx index 934c23529..a1ab17b77 100644 --- a/src/Orchard.Web/Packages/Orchard.CmsPages/Views/Admin/BulkPublishLater.aspx +++ b/src/Orchard.Web/Packages/Orchard.CmsPages/Views/Admin/BulkPublishLater.aspx @@ -3,23 +3,21 @@ <%@ Import Namespace="Orchard.Utility"%> <%@ Import Namespace="Orchard.CmsPages.Services.Templates"%> <%@ Import Namespace="Orchard.Mvc.Html" %> -<% Html.Include("AdminHead"); %> - <% using (Html.BeginForm()) { %> -Enter the scheduled publication date:
- <%=Html.ValidationSummary() %> - - <% } %> -<% Html.Include("AdminFoot"); %> \ No newline at end of file +<% using (Html.BeginForm()) { %> +Enter the scheduled publication date:
+ <%=Html.ValidationSummary() %> + +<% } %> \ No newline at end of file diff --git a/src/Orchard.Web/Packages/Orchard.CmsPages/Views/Admin/ChooseTemplate.aspx b/src/Orchard.Web/Packages/Orchard.CmsPages/Views/Admin/ChooseTemplate.aspx index 93be07868..17aa3a608 100644 --- a/src/Orchard.Web/Packages/Orchard.CmsPages/Views/Admin/ChooseTemplate.aspx +++ b/src/Orchard.Web/Packages/Orchard.CmsPages/Views/Admin/ChooseTemplate.aspx @@ -1,23 +1,21 @@ <%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPageSelect your layout from one of the templates below.
- <% using (Html.BeginForm()) { - %><%= Html.ValidationSummary() %> -- - <%-- todo: (heskew) should pull to give the browser some chance of rehydrating the edit page form state --%> - <%=Html.ActionLink("Cancel", "Edit", new { Id = ViewContext.RouteData.GetRequiredString("id") }, new { @class = "cancel" })%> -
<% - } %> -<% Html.Include("AdminFoot"); %> \ No newline at end of file +Select your layout from one of the templates below.
+<% using (Html.BeginForm()) { + %><%= Html.ValidationSummary() %> ++ + <%-- todo: (heskew) should pull to give the browser some chance of rehydrating the edit page form state --%> + <%=Html.ActionLink("Cancel", "Edit", new { Id = ViewContext.RouteData.GetRequiredString("id") }, new { @class = "cancel" })%> +
<% + } %> \ No newline at end of file diff --git a/src/Orchard.Web/Packages/Orchard.CmsPages/Views/Admin/Create.aspx b/src/Orchard.Web/Packages/Orchard.CmsPages/Views/Admin/Create.aspx index 80875e296..434797786 100644 --- a/src/Orchard.Web/Packages/Orchard.CmsPages/Views/Admin/Create.aspx +++ b/src/Orchard.Web/Packages/Orchard.CmsPages/Views/Admin/Create.aspx @@ -1,10 +1,8 @@ <%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPageSelect your layout from one of the templates below.
- <% using (Html.BeginForm()) { %> - <%=Html.ValidationSummary() %> - <%=Html.EditorForModel() %> - <% } %> -<% Html.Include("AdminFoot"); %> \ No newline at end of file +Select your layout from one of the templates below.
+<% using (Html.BeginForm()) { %> + <%=Html.ValidationSummary() %> + <%=Html.EditorForModel() %> +<% } %> \ No newline at end of file diff --git a/src/Orchard.Web/Packages/Orchard.CmsPages/Views/Admin/Edit.aspx b/src/Orchard.Web/Packages/Orchard.CmsPages/Views/Admin/Edit.aspx index b0aedc5aa..20d70150d 100644 --- a/src/Orchard.Web/Packages/Orchard.CmsPages/Views/Admin/Edit.aspx +++ b/src/Orchard.Web/Packages/Orchard.CmsPages/Views/Admin/Edit.aspx @@ -1,50 +1,48 @@ <%@ Page Language="C#" Inherits="Orchard.Mvc.ViewPage<%=_Encoded("about setting up a page") %>
- <%=Html.ValidationSummary() %> -<%=_Encoded("about setting up a page") %>
+<%=Html.ValidationSummary() %> +Current layout: + <%=Html.Encode(Model.Revision.TemplateName) %> + <%=Html.ActionLink("Change Template", "ChooseTemplate", new { Model.Revision.Page.Id }, new { @class = "button" }) %> +
+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.
-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.
+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.
- <% using (Html.BeginForm()) { %> - <%=Html.ValidationSummary() %> -↓<%-- todo: (heskew) something more appropriate for "this applies to the bulk actions --%> | -Status | -Title | -Slug | -Author | -Last Updated | -Draft | -Scheduled | -- | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
- - - | -
- <% if (pageEntry.IsPublished) {
- %> |
- <%=Html.ActionLink(revision.Title ?? "(no title)", "Show", new { Controller = "Templates", revision.Slug }) %> | -<%=Html.ActionLink(revision.Slug ?? "(no slug)", "Show", new { Controller = "Templates", revision.Slug }) %> | -By Unk | -<%=string.Format("{0:d} {0:t}", revision.ModifiedDate) %> |
-
- <% if (pageEntry.HasDraft) {
- %> |
- <%=revision.Page.Scheduled.Any() ? string.Format("{0:d} {0:t}", revision.Page.Scheduled.First().ScheduledDate.Value) : "" %> |
- <%=Html.ActionLink("Edit", "Edit", new { revision.Page.Id }) %> | +
↓<%-- todo: (heskew) something more appropriate for "this applies to the bulk actions --%> | +Status | +Title | +Slug | +Author | +Last Updated | +Draft | +Scheduled | +
---|
↓<%-- todo: (heskew) something more appropriate for "this applies to the bulk actions --%> | -Status | -Author | -Comment | -Date | -- |
---|---|---|---|---|---|
- - - - - | -<% if (commentEntry.Comment.Status == CommentStatus.Spam) {%> Spam <% } %> - <% else {%> Approved <% } %> - | -<%= commentEntry.Comment.UserName %> | -- <% if (commentEntry.Comment.CommentText != null) {%> - <%= commentEntry.Comment.CommentText.Length > 23 ? commentEntry.Comment.CommentText.Substring(0, 24) : commentEntry.Comment.CommentText %> ... - <% } %> - | -<%= commentEntry.Comment.CommentDate.ToLocalTime() %> | -- <%=Html.ActionLink("Edit", "Edit", new {commentEntry.Comment.Id}) %> | - <%=Html.ActionLink("Delete", "Delete", new {id = commentEntry.Comment.Id, redirectToAction = "Details"}) %> - | -
↓<%-- todo: (heskew) something more appropriate for "this applies to the bulk actions --%> | +Status | +Author | +Comment | +Date | ++ |
---|---|---|---|---|---|
+ + + + + | +<% if (commentEntry.Comment.Status == CommentStatus.Spam) {%> Spam <% } %> + <% else {%> Approved <% } %> + | +<%= commentEntry.Comment.UserName %> | ++ <% if (commentEntry.Comment.CommentText != null) {%> + <%= commentEntry.Comment.CommentText.Length > 23 ? commentEntry.Comment.CommentText.Substring(0, 24) : commentEntry.Comment.CommentText %> ... + <% } %> + | +<%= commentEntry.Comment.CommentDate.ToLocalTime() %> | ++ <%=Html.ActionLink("Edit", "Edit", new {commentEntry.Comment.Id}) %> | + <%=Html.ActionLink("Delete", "Delete", new {id = commentEntry.Comment.Id, redirectToAction = "Details"}) %> + | +
↓<%-- todo: (heskew) something more appropriate for "this applies to the bulk actions --%> | -Status | -Author | -Comment | -Date | -Commented On | -- |
---|---|---|---|---|---|---|
- - - | -<% if (commentEntry.Comment.Status == CommentStatus.Spam) {%> Spam <% } %> - <% else {%> Approved <% } %> - | -<%= commentEntry.Comment.UserName %> | -- <% if (commentEntry.Comment.CommentText != null) {%> - <%= commentEntry.Comment.CommentText.Length > 23 ? commentEntry.Comment.CommentText.Substring(0, 24) : commentEntry.Comment.CommentText %> ... - <% } %> - | -<%= commentEntry.Comment.CommentDate.ToLocalTime() %> | -- <%=Html.ActionLink(commentEntry.CommentedOn, "Details", new {id = commentEntry.Comment.CommentedOn}) %> - | -- <%=Html.ActionLink("Edit", "Edit", new {commentEntry.Comment.Id}) %> | - <%=Html.ActionLink("Delete", "Delete", new {id = commentEntry.Comment.Id, redirectToAction = "Index"}) %> - | -
↓<%-- todo: (heskew) something more appropriate for "this applies to the bulk actions --%> | +Status | +Author | +Comment | +Date | +Commented On | ++ |
---|---|---|---|---|---|---|
+ + + | +<% if (commentEntry.Comment.Status == CommentStatus.Spam) {%> Spam <% } %> + <% else {%> Approved <% } %> + | +<%= commentEntry.Comment.UserName %> | ++ <% if (commentEntry.Comment.CommentText != null) {%> + <%= commentEntry.Comment.CommentText.Length > 23 ? commentEntry.Comment.CommentText.Substring(0, 24) : commentEntry.Comment.CommentText %> ... + <% } %> + | +<%= commentEntry.Comment.CommentDate.ToLocalTime() %> | ++ <%=Html.ActionLink(commentEntry.CommentedOn, "Details", new {id = commentEntry.Comment.CommentedOn}) %> + | ++ <%=Html.ActionLink("Edit", "Edit", new {commentEntry.Comment.Id}) %> | + <%=Html.ActionLink("Delete", "Delete", new {id = commentEntry.Comment.Id, redirectToAction = "Index"}) %> + | +
- <%=Html.ActionLink("Media Folders", "Index")%> > - <%foreach (FolderNavigation navigation in MediaHelpers.GetFolderNavigationHierarchy(Model.MediaPath)) {%> - <%=Html.ActionLink(navigation.FolderName, "Edit", - new {name = navigation.FolderName, mediaPath = navigation.FolderPath})%> > - - <% } %> - Add Media
- <% using (Html.BeginForm("Add", "Admin", FormMethod.Post, new { enctype = "multipart/form-data" })) {%> - <%= Html.ValidationSummary() %> -+ <%=Html.ActionLink("Media Folders", "Index")%> > + <%foreach (FolderNavigation navigation in MediaHelpers.GetFolderNavigationHierarchy(Model.MediaPath)) {%> + <%=Html.ActionLink(navigation.FolderName, "Edit", + new {name = navigation.FolderName, mediaPath = navigation.FolderPath})%> > + + <% } %> + Add Media
+<% using (Html.BeginForm("Add", "Admin", FormMethod.Post, new { enctype = "multipart/form-data" })) {%> + <%= Html.ValidationSummary() %> +<%=Html.ActionLink("Media Folders", "Index")%> > - <%foreach (FolderNavigation navigation in MediaHelpers.GetFolderNavigationHierarchy(Model.MediaPath)) {%> - <%=Html.ActionLink(navigation.FolderName, "Edit", - new {name = navigation.FolderName, mediaPath = navigation.FolderPath})%> > - <% } %> - Add a Folder
- <%using (Html.BeginForm()) { %> - <%= Html.ValidationSummary() %> -<%=Html.ActionLink("Media Folders", "Index")%> > + <%foreach (FolderNavigation navigation in MediaHelpers.GetFolderNavigationHierarchy(Model.MediaPath)) {%> + <%=Html.ActionLink(navigation.FolderName, "Edit", + new {name = navigation.FolderName, mediaPath = navigation.FolderPath})%> > + <% } %> + Add a Folder
+<%using (Html.BeginForm()) { %> + <%= Html.ValidationSummary() %> +<%=Html.ActionLink("Media Folders", "Index")%> > - <%foreach (FolderNavigation navigation in MediaHelpers.GetFolderNavigationHierarchy(Model.MediaPath)) {%> - <%=Html.ActionLink(navigation.FolderName, "Edit", - new {name = navigation.FolderName, mediaPath = navigation.FolderPath})%> > - - <% } %> - Manage Folder
- <% Html.BeginForm(); %> -↓<%-- todo: (heskew) something more appropriate for "this applies to the bulk actions --%> | -Name | -Author | -Last Updated | -Type | -Size | -
---|---|---|---|---|---|
- "/> - - | -- <%=Html.ActionLink(mediaFile.Name, "EditMedia", new { name = mediaFile.Name, - lastUpdated = mediaFile.LastUpdated, - size = mediaFile.Size, - folderName = mediaFile.FolderName, - mediaPath = Model.MediaPath })%> - | -Orchard User | -<%= mediaFile.LastUpdated %> | -<%= mediaFile.Type %> | -<%= mediaFile.Size %> | -
- "/> - - | -
- |
- Orchard User | -<%= mediaFolder.LastUpdated %> | -Folder | -<%= mediaFolder.Size %> | -
<%=Html.ActionLink("Media Folders", "Index")%> > + <%foreach (FolderNavigation navigation in MediaHelpers.GetFolderNavigationHierarchy(Model.MediaPath)) {%> + <%=Html.ActionLink(navigation.FolderName, "Edit", + new {name = navigation.FolderName, mediaPath = navigation.FolderPath})%> > + + <% } %> + Manage Folder
+<% Html.BeginForm(); %> +↓<%-- todo: (heskew) something more appropriate for "this applies to the bulk actions --%> | +Name | +Author | +Last Updated | +Type | +Size | +
---|---|---|---|---|---|
+ "/> + + | ++ <%=Html.ActionLink(mediaFile.Name, "EditMedia", new { name = mediaFile.Name, + lastUpdated = mediaFile.LastUpdated, + size = mediaFile.Size, + folderName = mediaFile.FolderName, + mediaPath = Model.MediaPath })%> + | +Orchard User | +<%= mediaFile.LastUpdated %> | +<%= mediaFile.Type %> | +<%= mediaFile.Size %> | +
+ "/> + + | +
+ |
+ Orchard User | +<%= mediaFolder.LastUpdated %> | +Folder | +<%= mediaFolder.Size %> | +
- <%=Html.ActionLink("Media Folders", "Index")%> > - <%foreach (FolderNavigation navigation in MediaHelpers.GetFolderNavigationHierarchy(Model.MediaPath)) {%> - <%=Html.ActionLink(navigation.FolderName, "Edit", - new {name = navigation.FolderName, mediaPath = navigation.FolderPath})%> > - - <% } %> - Edit Media
-Copy this html to add this image to your site.
-+ <%=Html.ActionLink("Media Folders", "Index")%> > + <%foreach (FolderNavigation navigation in MediaHelpers.GetFolderNavigationHierarchy(Model.MediaPath)) {%> + <%=Html.ActionLink(navigation.FolderName, "Edit", + new {name = navigation.FolderName, mediaPath = navigation.FolderPath})%> > + + <% } %> + Edit Media
+Copy this html to add this image to your site.
+<%=Html.ActionLink("Media Folders", "Index")%> > - <%foreach (FolderNavigation navigation in MediaHelpers.GetFolderNavigationHierarchy(Model.MediaPath)) {%> - <%=Html.ActionLink(navigation.FolderName, "Edit", - new {name = navigation.FolderName, mediaPath = navigation.FolderPath})%> > - - <% } %> - Folder Properties
- <%using (Html.BeginForm()) { %> - <%= Html.ValidationSummary() %> -<%=Html.ActionLink("Media Folders", "Index")%> > + <%foreach (FolderNavigation navigation in MediaHelpers.GetFolderNavigationHierarchy(Model.MediaPath)) {%> + <%=Html.ActionLink(navigation.FolderName, "Edit", + new {name = navigation.FolderName, mediaPath = navigation.FolderPath})%> > + + <% } %> + Folder Properties
+<%using (Html.BeginForm()) { %> + <%= Html.ValidationSummary() %> +<%=Html.ActionLink("Media Folders", "Index")%> > Manage Media Folders
- <% Html.BeginForm(); %> - <%=Html.ValidationSummary() %> -↓<%-- todo: (heskew) something more appropriate for "this applies to the bulk actions --%> | -Name | -Author | -Last Updated | -Type | -Size | -
---|---|---|---|---|---|
"/> | -Orchard User | -<%=mediaFolder.LastUpdated %> | -Folder | -<%=mediaFolder.Size %> | -
<%=Html.ActionLink("Media Folders", "Index")%> > Manage Media Folders
+<% Html.BeginForm(); %> + <%=Html.ValidationSummary() %> +↓<%-- todo: (heskew) something more appropriate for "this applies to the bulk actions --%> | +Name | +Author | +Last Updated | +Type | +Size | +
---|---|---|---|---|---|
"/> | +Orchard User | +<%=mediaFolder.LastUpdated %> | +Folder | +<%=mediaFolder.Size %> | +
Permission | -Allow | -
---|
<%=permission.Description%> | -"/> | +Permission | +Allow |
---|
Permission | -Allow | -||
---|---|---|---|
<%=permission.Description%> | -- <% if (Model.CurrentPermissions.Contains(permission.Name)) {%> - " checked="checked"/> - <% } else {%> - "/> - <% }%> - | + +
Permission | +Allow |
---|
↓<%-- todo: (heskew) something more appropriate for "this applies to the bulk actions --%> | -Name | -- |
---|---|---|
"/> | -<%=Html.Encode(row.Name) %> | -<%=Html.ActionLink("Edit", "Edit", new { row.Id })%> | -
↓<%-- todo: (heskew) something more appropriate for "this applies to the bulk actions --%> | +Name | ++ |
---|---|---|
"/> | +<%=Html.Encode(row.Name) %> | +<%=Html.ActionLink("Edit", "Edit", new { row.Id })%> | +
↓<%-- todo: (heskew) something more appropriate for "this applies to the bulk actions --%> | -Name | -- |
---|---|---|
- - - | -- <%=Html.ActionLink(tagEntry.Tag.TagName, "Search", new {id = tagEntry.Tag.Id}) %> - | -- <%=Html.ActionLink("Edit", "Edit", new {id = tagEntry.Tag.Id}) %> - | -
↓<%-- todo: (heskew) something more appropriate for "this applies to the bulk actions --%> | +Name | ++ |
---|---|---|
+ + + | ++ <%=Html.ActionLink(tagEntry.Tag.TagName, "Search", new {id = tagEntry.Tag.Id}) %> + | ++ <%=Html.ActionLink("Edit", "Edit", new {id = tagEntry.Tag.Id}) %> + | +
Name | -Link to the content item | -
---|---|
<%=Html.ItemDisplayText(contentItem)%> | -<%=Html.ItemDisplayLink(contentItem)%> | -
Name | +Link to the content item | +
---|---|
<%=Html.ItemDisplayText(contentItem)%> | +<%=Html.ItemDisplayLink(contentItem)%> | +
- Name - | -- Email - | -- | -
---|
- <%=Html.Encode(row.User.UserName)%> - | -- <%=Html.Encode(row.User.Email)%> - | -- <%=Html.ActionLink("Edit", "Edit", new { row.User.Id })%> - | ++ Name + | ++ Email + | ++ |
---|