mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-28 11:42:28 +00:00
18 lines
No EOL
468 B
Text
18 lines
No EOL
468 B
Text
@page "/moderation/report/{reportId:int}"
|
|
@model LBPUnion.ProjectLighthouse.Servers.Website.Pages.Moderation.ReportPage
|
|
|
|
@{
|
|
Layout = "Layouts/BaseLayout";
|
|
Model.Title = $"Report {Model.Report.ReportId}";
|
|
}
|
|
|
|
<script>
|
|
let subjects = [];
|
|
let bounds = [];
|
|
let canvases = [];
|
|
let ctx = [];
|
|
let images = [];
|
|
</script>
|
|
|
|
@await Html.PartialAsync("Partials/ReportPartial", Model.Report)
|
|
@await Html.PartialAsync("Partials/RenderReportBoundsPartial") |