init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,59 @@
|
|||
@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();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue