migrated to ASP.Net Core
This commit is contained in:
@ -0,0 +1,11 @@
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
@model List<SharedLibrary.Dtos.PenaltyInfo>
|
||||
|
||||
@{
|
||||
foreach (var penalty in Model)
|
||||
{
|
||||
Html.RenderPartial("_Penalty", penalty);
|
||||
}
|
||||
}
|
11
WebfrontCore/Views/Shared/Components/ServerList/_List.cshtml
Normal file
11
WebfrontCore/Views/Shared/Components/ServerList/_List.cshtml
Normal file
@ -0,0 +1,11 @@
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
@model IEnumerable<SharedLibrary.Dtos.ServerInfo>
|
||||
|
||||
@{
|
||||
foreach (var s in Model)
|
||||
{
|
||||
Html.RenderPartial("../Server/_Server", s);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user