59 lines
1.7 KiB
Text
59 lines
1.7 KiB
Text
@using Kreta.Web.Helpers
|
|
@using Kreta.Web.Areas.KirImportExport.Models.KirImport
|
|
@using Kreta.Resources
|
|
@model CompareModel
|
|
|
|
@using (Html.KretaForm("KirImportModel"))
|
|
{
|
|
@Html.KretaValidationSummary()
|
|
@Html.HiddenFor(x => x.FelhasznaloId)
|
|
|
|
<div id="KirImportTanuloStrip">
|
|
<ul class="tab-container">
|
|
<li class="k-state-active">
|
|
@TanuloResource.Alapadatok
|
|
</li>
|
|
<li>
|
|
@TanuloResource.Elerhetosegek
|
|
</li>
|
|
@if (Model.TanugyiAdatokTabIsVisible)
|
|
{
|
|
<li>
|
|
@TanuloResource.Tanugy
|
|
</li>
|
|
}
|
|
</ul>
|
|
@{
|
|
Model.GridApiUrl = Constants.ApiControllers.KirTanuloImportApi;
|
|
}
|
|
<div>
|
|
@{
|
|
Model.GridName = "TanuloAlapadatokGrid";
|
|
Model.GridAction = "GetTanuloAlapadatokGrid";
|
|
|
|
Html.RenderPartial("_CompareView", Model);
|
|
}
|
|
</div>
|
|
<div>
|
|
@{
|
|
Model.GridName = "TanuloElerhetosegAdatokGrid";
|
|
Model.GridAction = "GetTanuloElerhetosegAdatokGrid";
|
|
|
|
Html.RenderPartial("_CompareView", Model);
|
|
}
|
|
</div>
|
|
<div>
|
|
@{
|
|
if (Model.TanugyiAdatokTabIsVisible)
|
|
{
|
|
Model.GridName = "TanuloJogviszonyAdatokGrid";
|
|
Model.GridAction = "GetTanuloJogviszonyAdatokGrid";
|
|
|
|
Html.RenderPartial("_CompareView", Model);
|
|
}
|
|
}
|
|
</div>
|
|
</div>
|
|
|
|
@Html.KretaTabStrip("KirImportTanuloStrip").RenderOnModal();
|
|
}
|