Initial Commit

This commit is contained in:
2026-03-01 15:14:42 -04:00
commit f60174625e
377 changed files with 98166 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
@model IEnumerable<SportsDivision.Application.DTOs.ReportDtos.RegistrationByGenderReportDto>
@{
ViewData["Title"] = "Registration by Gender";
}
<h2>Registration by Gender</h2>
<hr />
<table class="table table-striped table-hover">
<thead class="table-dark">
<tr><th>Event</th><th>Level</th><th class="text-center">Male</th><th class="text-center">Female</th><th class="text-center">Total</th></tr>
</thead>
<tbody>
@foreach (var r in Model)
{
<tr>
<td>@r.EventName</td>
<td>@r.EventLevelName</td>
<td class="text-center">@r.MaleCount</td>
<td class="text-center">@r.FemaleCount</td>
<td class="text-center"><strong>@r.TotalCount</strong></td>
</tr>
}
</tbody>
</table>
<a asp-action="Index" class="btn btn-secondary">Back to Reports</a>