Add banned users and hidden levels page to mod panel

This commit is contained in:
jvyden 2022-08-14 18:39:19 -04:00
commit 67bad4fd1e
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
8 changed files with 178 additions and 3 deletions

View file

@ -8,6 +8,7 @@
@{
Layout = "Layouts/BaseLayout";
Model.Title = Model.Translate(BaseLayoutStrings.HeaderUsers);
bool isMobile = Model.Request.IsMobile();
}
<p>There are @Model.UserCount total users.</p>
@ -22,7 +23,6 @@
@foreach (User user in Model.Users)
{
bool isMobile = Model.Request.IsMobile();
<div class="ui segment">
@await Html.PartialAsync("Partials/UserCardPartial", user, new ViewDataDictionary(ViewData)
{