@using (Html.BeginFormAntiForgeryPost()) {
@Html.ValidationSummary()
@Display(Model)
diff --git a/src/Orchard.Web/Core/Contents/Views/Items/Content.Edit.cshtml b/src/Orchard.Web/Core/Contents/Views/Items/Content.Edit.cshtml
index 1fc48fd18..cd35a776c 100644
--- a/src/Orchard.Web/Core/Contents/Views/Items/Content.Edit.cshtml
+++ b/src/Orchard.Web/Core/Contents/Views/Items/Content.Edit.cshtml
@@ -1,7 +1,11 @@
-content item -> @Model.ContentItem.ContentType
-
-@Display(Model.primary)
-
-
\ No newline at end of file
+
+
+ @Display(Model.primary)
+
+
+ @Display(Model.secondary)
+
+
+
\ No newline at end of file
diff --git a/src/Orchard.Web/Core/Routable/Views/EditorTemplates/Parts/Routable.RoutePart.cshtml b/src/Orchard.Web/Core/Routable/Views/EditorTemplates/Parts/Routable.RoutePart.cshtml
index bdd049a21..b02615f3e 100644
--- a/src/Orchard.Web/Core/Routable/Views/EditorTemplates/Parts/Routable.RoutePart.cshtml
+++ b/src/Orchard.Web/Core/Routable/Views/EditorTemplates/Parts/Routable.RoutePart.cshtml
@@ -1,7 +1,7 @@
@model Orchard.Core.Routable.ViewModels.RoutableEditorViewModel
@using Orchard.Utility.Extensions
+@using Orchard.Mvc.Spooling
-@Html.RegisterFootScript("jquery.slugify.js");
-@// todo: (sebros) add this script at the end of the page
-@/*
-
-*/
\ No newline at end of file
+@{
+ Html.RegisterFootScript("jquery.slugify.js");
+
+ OutputStack.Push(new HtmlStringWriter());
+ try {
+
+ }
+ finally {
+ var script = OutputStack.Pop();
+ WorkContext.Page.Tail.Add(script);
+ }
+}