From 9b9ea88b097dc35a0ef220bd339ba25943a01dd2 Mon Sep 17 00:00:00 2001 From: Lombiq Date: Fri, 23 Aug 2019 12:20:47 +0200 Subject: [PATCH] Core/Navigation: Untabifying and code styling in MenuWidgetPart editor template --- .../Parts.MenuWidget.Edit.cshtml | 84 +++++++++---------- 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/src/Orchard.Web/Core/Navigation/Views/EditorTemplates/Parts.MenuWidget.Edit.cshtml b/src/Orchard.Web/Core/Navigation/Views/EditorTemplates/Parts.MenuWidget.Edit.cshtml index d1b4eaeef..d8ae25d8d 100644 --- a/src/Orchard.Web/Core/Navigation/Views/EditorTemplates/Parts.MenuWidget.Edit.cshtml +++ b/src/Orchard.Web/Core/Navigation/Views/EditorTemplates/Parts.MenuWidget.Edit.cshtml @@ -1,51 +1,51 @@ @model Orchard.Core.Navigation.ViewModels.MenuWidgetViewModel + @using Orchard.ContentManagement -@using Orchard.Core.Navigation.Models; -
- @Html.LabelFor(m => m.CurrentMenuId, T("For Menu")) - - @T("Select which menu you want to display") -
+
+ @Html.LabelFor(m => m.CurrentMenuId, T("For Menu")) + + @T("Select which menu you want to display") +
-
- - @Html.TextBoxFor(m => m.StartLevel, new { @class = "text small" }) - @T("The level the menu should start at.") -
+
+ + @Html.TextBoxFor(m => m.StartLevel, new { @class = "text small" }) + @T("The level the menu should start at.") +
-
- - @Html.TextBoxFor(m => m.StopLevel, new { @class = "text small" }) - @T("The number of levels to display, \"0\" meaning all levels.") -
+
+ + @Html.TextBoxFor(m => m.StopLevel, new { @class = "text small" }) + @T("The number of levels to display, \"0\" meaning all levels.") +
-
- @Html.EditorFor(m => m.Breadcrumb) - - @T("Check to render the path to the current content item.") -
+
+ @Html.EditorFor(m => m.Breadcrumb) + + @T("Check to render the path to the current content item.") +
-
-
- @Html.EditorFor(m => m.AddHomePage) - - @T("Check to render the home page as the first element of the breadcrumb.") -
- -
- @Html.EditorFor(m => m.AddCurrentPage) - - @T("Check to render the current content item as the last element.") -
-
+
+
+ @Html.EditorFor(m => m.AddHomePage) + + @T("Check to render the home page as the first element of the breadcrumb.") +
- @Html.EditorFor(m => m.ShowFullMenu) - - @T("Check for the menu to be display without filtering the selected current page.") -
\ No newline at end of file + @Html.EditorFor(m => m.AddCurrentPage) + + @T("Check to render the current content item as the last element.") + +
+ +
+ @Html.EditorFor(m => m.ShowFullMenu) + + @T("Check for the menu to be display without filtering the selected current page.") +
\ No newline at end of file