IW4M-Admin/WebfrontCore/Views/Penalty/PenaltyInfoList.cshtml

11 lines
190 B
Plaintext
Raw Normal View History

2018-02-21 20:29:23 -05:00
@{
Layout = null;
}
@model IList<SharedLibraryCore.Dtos.PenaltyInfo>
2018-02-21 20:29:23 -05:00
@{
foreach (var penalty in Model)
{
await Html.RenderPartialAsync("_Penalty", penalty);
2018-02-21 20:29:23 -05:00
}
}