@{ Layout.Title = T("Edit Alias"); } @using (Html.BeginFormAntiForgeryPost()) { @Html.ValidationSummary()
@T("Edit alias")
@Html.TextBox("aliasPath", null, new { @class = "text large" }) @Html.ValidationMessage("aliasPath") @T("The path of the alias e.g., my-blog/my-post")
@Html.TextBox("routePath", null, new { @class = "text medium" }) @Html.ValidationMessage("routePath") @T("The actual route Orchard should call when the path is requested e.g., Blogs/Blog/Item?blogId=18")
@Html.ActionLink(T("Cancel").ToString(), "Index", new { }, new { @class = "button" })
}