diff --git a/src/Orchard.Web/Modules/Orchard.Experimental/Views/Commands/Execute.cshtml b/src/Orchard.Web/Modules/Orchard.Experimental/Views/Commands/Execute.cshtml index 388ce7a2c..00ae966bd 100644 --- a/src/Orchard.Web/Modules/Orchard.Experimental/Views/Commands/Execute.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Experimental/Views/Commands/Execute.cshtml @@ -1,20 +1,21 @@ +@model Orchard.Experimental.ViewModels.CommandsExecuteViewModel

@Html.TitleForPage(T("Command line").ToString())

@using (Html.BeginFormAntiForgeryPost(Url.Action("Execute"))) { - Html.ValidationSummary() + @Html.ValidationSummary() @Html.LabelFor(m => m.CommandLine, T("Command Line")) @Html.TextBoxFor(m => m.CommandLine, new { style = "width:100%;" }) @Html.ValidationMessageFor(m => m.CommandLine)
@Model.Results
} -
\ No newline at end of file + diff --git a/src/Orchard.Web/Modules/Orchard.Experimental/Views/DumpShapeTable.cshtml b/src/Orchard.Web/Modules/Orchard.Experimental/Views/DumpShapeTable.cshtml index aea6c14ec..62843e179 100644 --- a/src/Orchard.Web/Modules/Orchard.Experimental/Views/DumpShapeTable.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Experimental/Views/DumpShapeTable.cshtml @@ -3,7 +3,7 @@ @Display(Model.Metadata.ChildContent) @{ var workContext = ViewContext.GetWorkContext(); - var shapeTable = workContext.Resolve().GetShapeTable(workContext.CurrentTheme.ThemeName); + var shapeTable = workContext.Resolve().GetShapeTable(workContext.CurrentTheme.Name);