mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-23 01:12:27 +00:00
* Initial work for user settings page * Finish user setting and slot setting pages * Don't show slot upload date on home page and fix team pick redirection * Fix upload image button alignment on mobile * Fix image upload on iPhone * Remove unused css and add selected button color * Fix login email check and bump ChromeDriver to 105 * Remove duplicated code and allow users to leave fields empty * Add unpublish button on level settings and move settings button position * Don't show edit button on mini card * Self review bug fixes and users can no longer use an in-use email
27 lines
No EOL
869 B
Text
27 lines
No EOL
869 B
Text
@page "/moderation/cases/{pageNumber:int}"
|
|
@using LBPUnion.ProjectLighthouse.Administration
|
|
@using LBPUnion.ProjectLighthouse.Servers.Website.Extensions
|
|
@model LBPUnion.ProjectLighthouse.Servers.Website.Pages.Moderation.CasePage
|
|
|
|
@{
|
|
Layout = "Layouts/BaseLayout";
|
|
Model.Title = "Cases";
|
|
|
|
string timeZone = Model.GetTimeZone();
|
|
}
|
|
|
|
<p>There are @Model.CaseCount total cases, @Model.DismissedCaseCount of which have been dismissed.</p>
|
|
|
|
<form action="/moderation/cases/0">
|
|
<div class="ui icon input">
|
|
<input type="text" autocomplete="off" name="name" placeholder="Search cases..." value="@Model.SearchValue">
|
|
<i class="search icon"></i>
|
|
</div>
|
|
</form>
|
|
|
|
<div class="ui divider"></div>
|
|
|
|
@foreach (ModerationCase @case in Model.Cases)
|
|
{
|
|
@(await Html.PartialAsync("Partials/ModerationCasePartial", @case, ViewData.WithTime(timeZone)))
|
|
} |