\ No newline at end of file
diff --git a/src/Orchard.Web/Packages/Orchard.Blogs/Views/BlogPost/EditorTemplates/CreateBlogPostViewModel.ascx b/src/Orchard.Web/Packages/Orchard.Blogs/Views/BlogPost/EditorTemplates/CreateBlogPostViewModel.ascx
index 946f5f0e3..1098102e2 100644
--- a/src/Orchard.Web/Packages/Orchard.Blogs/Views/BlogPost/EditorTemplates/CreateBlogPostViewModel.ascx
+++ b/src/Orchard.Web/Packages/Orchard.Blogs/Views/BlogPost/EditorTemplates/CreateBlogPostViewModel.ascx
@@ -1,26 +1,39 @@
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
+<%@ Import Namespace="Orchard.Blogs.Extensions"%>
<%@ Import Namespace="Orchard.Blogs.ViewModels"%>
-
Content
<%-- todo: (heskew) thin out the fieldsets if they become overkill --%>
+ <% foreach (var e in Model.ItemView.Editors) {
+ var editor = e;
+ // TODO: why is Body in editors?
+ // TODO: because any content type using the body editor doesn't need
+ // to re-implement the rich editor, media extensions, format filter chain selection, etc
+ if (!String.Equals(editor.Prefix, "Body")) {
+ %><%=Html.EditorFor(m=>editor.Model, editor.TemplateName, editor.Prefix) %>
+ <% }
+ } %>
- <% var commentCount = Model.Comments.Count(); %>
+
-
<%--
todo: (heskew) would be better to have a ↑ checkbox ↑ instead of a ↓ button ↓
@@ -34,4 +30,3 @@ todo: (heskew) shouldn't have comments when editing a content item. besides bein
<% } %>
--%>
-<% } %>
\ No newline at end of file
diff --git a/src/Orchard.Web/Packages/Orchard.DevTools/Views/Models/EditorTemplates/ShowDebugLink.ascx b/src/Orchard.Web/Packages/Orchard.DevTools/Views/Models/EditorTemplates/ShowDebugLink.ascx
index 77afe4cd5..d77a8dc90 100644
--- a/src/Orchard.Web/Packages/Orchard.DevTools/Views/Models/EditorTemplates/ShowDebugLink.ascx
+++ b/src/Orchard.Web/Packages/Orchard.DevTools/Views/Models/EditorTemplates/ShowDebugLink.ascx
@@ -1,5 +1,7 @@
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
<%@ Import Namespace="Orchard.DevTools.Models" %>
+<% if (Model.ContentItem.Id > 0) { %>
DevTools: editing
<%= Html.ActionLink(Model.ContentItem.ContentType + " #" + Model.ContentItem.Id, "details", "content", new { area = "Orchard.DevTools", Model.ContentItem.Id }, new { })%>