Files
LeafWeb/WebCms/Views/Membership/UserList.cshtml
T
2023-02-24 10:52:33 -05:00

30 lines
1.1 KiB
Plaintext

@model IEnumerable<UserViewModel>
<div class="container mt-4">
<div class="row justify-content-center">
<div class="col-md-9">
<table class="table table-striped table-bordered">
<thead class="thead-light">
<tr><th scope="col">Email</th><th scope="col">Name</th><th scope="col">First Seen</th><th scope="col">Member</th><th scope="col"># of Leaf Input</th></tr>
</thead>
<tbody >
@foreach (var m in Model)
{
<tr>
<td>@m.Email</td>
<td>@m.Name</td>
<td>@m.FirstSeen.ToShortDateString()</td>
<td>
@if (m.Member)
{
<text>&#x2714;</text>
}
</td>
<td>@m.LeafInputCount</td>
</tr>
}
</tbody>
</table>
</div>
</div>
</div>