Files
hamann-ausgabe-core/HaWeb/Views/Register/Index.cshtml
2022-05-17 01:21:10 +02:00

11 lines
278 B
Plaintext

@model RegisterViewModel;
@using System.Diagnostics;
@foreach (var k in Model.Comments) {
<div>@Html.Raw(k.ParsedComment)</div>
@if (k.SubComments != null ) {
@foreach (var sk in k.SubComments) {
<div>@Html.Raw(sk.ParsedComment)</div>
}
}
}