diff --git a/src/Server/DeploymentFramework/Web/Areas/Security/Views/Positions/UpdateName.cshtml b/src/Server/DeploymentFramework/Web/Areas/Security/Views/Positions/UpdateName.cshtml index 43adaa4..f1fe819 100644 --- a/src/Server/DeploymentFramework/Web/Areas/Security/Views/Positions/UpdateName.cshtml +++ b/src/Server/DeploymentFramework/Web/Areas/Security/Views/Positions/UpdateName.cshtml @@ -13,6 +13,8 @@ { @s.FieldFor(m => m.Name) } + + @Html.GuardedActionLink(StringResources.BackToList, MVC.Security.Positions.Index(), new SimpleHtmlAttributes("class", "btn btn-default")) using (var n = f.BeginNavigation()) { diff --git a/src/Server/DeploymentFramework/Web/Areas/Security/Views/Roles/UpdateName.cshtml b/src/Server/DeploymentFramework/Web/Areas/Security/Views/Roles/UpdateName.cshtml index 42f0e29..5337c3d 100644 --- a/src/Server/DeploymentFramework/Web/Areas/Security/Views/Roles/UpdateName.cshtml +++ b/src/Server/DeploymentFramework/Web/Areas/Security/Views/Roles/UpdateName.cshtml @@ -14,6 +14,8 @@ @s.FieldFor(m => m.Name) } + @Html.GuardedActionLink(StringResources.BackToList, MVC.Security.Roles.Index(), new SimpleHtmlAttributes("class", "btn btn-default")) + using (var n = f.BeginNavigation()) { @n.Submit(StringResources.Save) diff --git a/src/Server/DeploymentFramework/Web/Areas/Security/Views/Users/Detail.cshtml b/src/Server/DeploymentFramework/Web/Areas/Security/Views/Users/Detail.cshtml index b94aa74..2e24cb1 100644 --- a/src/Server/DeploymentFramework/Web/Areas/Security/Views/Users/Detail.cshtml +++ b/src/Server/DeploymentFramework/Web/Areas/Security/Views/Users/Detail.cshtml @@ -21,4 +21,5 @@ } } +@Html.GuardedActionLink(StringResources.BackToList, MVC.Security.Users.Index(), new SimpleHtmlAttributes("class", "btn btn-default")) @Html.GuardedActionLink(StringResources.Edit, MVC.Security.Users.Edit(Model.ID), new SimpleHtmlAttributes("class", "btn btn-default")) \ No newline at end of file