@model RegisterViewModel; @* Generated classes by CommentHelper.cs: - .ha-letlink .ha-wwwlink .ha-reflink: Links to letters, the web, the reference - .ha-lemma: The lemma - .ha-title: Name of something - .ha-reference: Automatically inserted linktext - .ha-commenthead: Class containing the head of a comment, lemma and backlinks - .ha-commentbody: Body of a comment, containing the comments text - .ha-letlinks: Collection of references in the comment within the marginals - .ha-hkb: HKB that is in front of those links - .ha-insertedlemma: automatically generated and inserted lemma Generated classes by JavaScript: - .ha-collapsed-box, .ha-expanded-box: for an expanded or collapsed comment box - .ha-open-btn-collapsed-box, ha-close-btn-collapsed-box: for open- & close buttons for the boxes - .ha-btn-collapsed-box: for the button itself - .ha-collapsed-box-manually-toggled: for a manually (not on mousehover) toggled button *@ @{ var commentClass = Model.Category == "neuzeit" ? "ha-neuzeit" : Model.Category == "forschung" ? "ha-forschung" : "ha-bibel"; }

@Model.Title

@if (Model.AllowSendIn) { } @if (Model.AllowSearch) { @if (Model.Category == "neuzeit") {
} else {
} @*
*@ }
@if (Model.AvailableCategories != null) { @foreach (var l in Model.AvailableCategories) { @l.Item1 } }
@if (Model.AvailableSideCategories != null) { foreach (var l in Model.AvailableSideCategories) { @l.Item1 } }
@foreach (var k in Model.ParsedComments) {
@Html.Raw(k.ParsedComment)
@if (k.ParsedSubComments != null ) { @foreach (var sk in k.ParsedSubComments) {
@Html.Raw(sk)
} }
}