Add UserList

This commit is contained in:
2023-01-27 09:36:14 -05:00
parent 4e3daa7320
commit 8e16510ad9
4 changed files with 39 additions and 1 deletions
@@ -0,0 +1,4 @@
@inherits Umbraco.Web.Macros.PartialViewMacroPage
@{
Html.RenderAction("UserList", "Membership");
}
+17
View File
@@ -0,0 +1,17 @@
@model IEnumerable<Tuple<string,string>>
<div class="container mt-4">
<div class="row justify-content-center">
<div class="col-md-6 ">
<table>
@foreach (var m in Model)
{
<tr>
<th>@m.Item1</th><th>@m.Item2</th>
</tr>
}
</table>
</div>
</div>
</div>