From cdc61eb4ea5309769ad4db84d92594e4dc3dff67 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 20 Mar 2017 16:45:17 -0400 Subject: Initial commit (azure deploy test) --- Project-Unite/Views/Admin/DeleteRole.cshtml | 48 +++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 Project-Unite/Views/Admin/DeleteRole.cshtml (limited to 'Project-Unite/Views/Admin/DeleteRole.cshtml') diff --git a/Project-Unite/Views/Admin/DeleteRole.cshtml b/Project-Unite/Views/Admin/DeleteRole.cshtml new file mode 100644 index 0000000..2344d1d --- /dev/null +++ b/Project-Unite/Views/Admin/DeleteRole.cshtml @@ -0,0 +1,48 @@ +@model Project_Unite.Models.Role + +@{ + ViewBag.Title = "Delete"; +} + +

Delete

+ +

Are you sure you want to delete this?

+
+

Role

+
+
+
+ @Html.DisplayNameFor(model => model.Name) +
+ +
+ @Html.DisplayFor(model => model.Name) +
+ +
+ @Html.DisplayNameFor(model => model.Description) +
+ +
+ @Html.DisplayFor(model => model.Description) +
+ +
+ @Html.DisplayNameFor(model => model.ColorHex) +
+ +
+ @Html.DisplayFor(model => model.ColorHex) +
+ +
+ + @using (Html.BeginForm()) { + @Html.AntiForgeryToken() + +
+ | + @Html.ActionLink("Back to List", "Index") +
+ } +
-- cgit v1.2.3