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,25 @@
@using Kreta.Web.Areas.Beiratkozas.Controllers
@using Kreta.Web.Helpers
@using Kreta.Web.Areas.Beiratkozas.Models
@model NebuloModel
@using (Html.KretaForm(NebuloController.NewModifyNebuloFormName))
{
@Html.KretaValidationSummary()
@Html.HiddenFor(x => x.Id)
<div id="beiratkozasContainer" class="beiratkozasWrapper container-fluid" style="width: 91%; margin:0 auto">
<div id="IndoklasDiv">
<div class="col-sm-12 col-md-12">
<div class="row labelrow" style="margin-top:15px">
<div class="col-sm-12">
@Html.LabelFor(m => m.Indoklas)
</div>
<div class="col-sm-12">
@Html.KretaTextAreaFor(m => m.Indoklas, 7).Render(1, 12)
</div>
</div>
</div>
</div>
</div>
}