mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 01:05:32 +00:00
11 lines
278 B
Plaintext
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>
|
|
}
|
|
}
|
|
} |