This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,21 @@
@using Kreta.Web.Areas.TanuloErtekeles.Models
@using Kreta.Web.Helpers
@model FeljegyzesModel
<div class="container-fluid details">
<div class="row">
@Html.KretaLabelFor(x => x.DatumString, 3, 3)
@Html.KretaLabelFor(x => x.FeljegyzoNev, 3, 3)
</div>
<div class="row">
<div class="@BootsrapHelper.GetSizeClasses(3)">
@Html.LabelFor(x => x.Tartalom, htmlAttributes: new Dictionary<string, object> { { "class", "windowInputLabel" } })
</div>
<div class="@BootsrapHelper.GetSizeClasses(9)">
@Html.Raw(Model.Tartalom)
</div>
</div>
<div class="row">
@Html.KretaLabelFor(x => x.Megjegyzes, 3, 9)
</div>
</div>