init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,53 @@
|
|||
@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="KirImportAlkalmazottStrip">
|
||||
<ul class="tab-container">
|
||||
<li class="k-state-active">
|
||||
@AlkalmazottResource.Alapadatok
|
||||
</li>
|
||||
<li>
|
||||
@AlkalmazottResource.Elerhetosegek
|
||||
</li>
|
||||
<li>
|
||||
@AlkalmazottResource.ElsodlegesMunkaugyiAdatok
|
||||
</li>
|
||||
</ul>
|
||||
@{
|
||||
Model.GridApiUrl = Constants.ApiControllers.KirAlkalmazottImportApi;
|
||||
}
|
||||
<div>
|
||||
@{
|
||||
Model.GridName = "AlkalmazottAlapadatokGrid";
|
||||
Model.GridAction = "GetAlkalmazottAlapadatokGrid";
|
||||
|
||||
Html.RenderPartial("_CompareView", Model);
|
||||
}
|
||||
</div>
|
||||
<div>
|
||||
@{
|
||||
Model.GridName = "AlkalmazottElerhetosegAdatokGrid";
|
||||
Model.GridAction = "GetAlkalmazottElerhetosegAdatokGrid";
|
||||
|
||||
Html.RenderPartial("_CompareView", Model);
|
||||
}
|
||||
</div>
|
||||
<div>
|
||||
@{
|
||||
Model.GridName = "AlkalmazottElsodlegesMunkaugyiAdatokGrid";
|
||||
Model.GridAction = "GetAlkalmazottElsodlegesMunkaugyiAdatokGrid";
|
||||
|
||||
Html.RenderPartial("_CompareView", Model);
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@Html.KretaTabStrip("KirImportAlkalmazottStrip").RenderOnModal();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue