1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

migrated to ASP.Net Core

This commit is contained in:
RaidMax
2018-02-21 19:29:23 -06:00
parent 2e0b5f2d71
commit 761ab8a114
4407 changed files with 311698 additions and 124726 deletions

View File

@ -0,0 +1,11 @@
@{
Layout = null;
}
@model List<SharedLibrary.Dtos.PenaltyInfo>
@{
foreach (var penalty in Model)
{
Html.RenderPartial("_Penalty", penalty);
}
}

View File

@ -0,0 +1,11 @@
@{
Layout = null;
}
@model IEnumerable<SharedLibrary.Dtos.ServerInfo>
@{
foreach (var s in Model)
{
Html.RenderPartial("../Server/_Server", s);
}
}