25 lines
No EOL
881 B
Text
25 lines
No EOL
881 B
Text
@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>
|
|
} |