@model Orchard.Experimental.ViewModels.CommandsExecuteViewModel

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

@using (Html.BeginFormAntiForgeryPost(Url.Action("Execute"))) { @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
}