14 lines
308 B
Text
14 lines
308 B
Text
@using Kreta.Web.Models
|
|
@model CimElerhetosegModel
|
|
@{
|
|
bool isAutoBindNeeded = Model.IsAutoBindNeeded;
|
|
}
|
|
|
|
@using (Html.KretaForm("ElerhetosegCimForm"))
|
|
{
|
|
@Html.KretaValidationSummary()
|
|
<div class="container-fluid details">
|
|
@Html.Partial("_Cim_Elerhetoseg_Partial", Model)
|
|
</div>
|
|
}
|
|
|