init
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
@using Kreta.Resources;
|
||||
@using Kreta.Web.Areas.Orarend.Models;
|
||||
|
||||
@model WizardElovalasztoModel
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<div style="padding-top: 15px;">
|
||||
@if (Model.TanarVehetFelOratMaganak)
|
||||
{
|
||||
<div class="row" style="text-align: center;">
|
||||
@Html.KretaButton("naploTTFBtn", 4596, true, htmlAttributes: new Dictionary<string, object>() { { "style", "width: 65%;margin-bottom: 15px;" } })
|
||||
</div>
|
||||
}
|
||||
|
||||
@if (Model.LehetOratFelvenniTTFNelkul)
|
||||
{
|
||||
<div class="row" style="text-align: center;">
|
||||
@Html.KretaButton("naploEgyediBtn", 4597, true, htmlAttributes: new Dictionary<string, object>() { { "style", "width: 65%;margin-bottom: 15px;" } })
|
||||
</div>
|
||||
}
|
||||
|
||||
@if (Model.TanarKezelhetHelyettesitest)
|
||||
{
|
||||
<div class="row" style="text-align: center;">
|
||||
@Html.KretaButton("helyettesitesBtn", 1499, true, htmlAttributes: new Dictionary<string, object>() { { "style", "width: 65%" } })
|
||||
</div>
|
||||
}
|
||||
|
||||
@if (!Model.TanarVehetFelOratMaganak && !Model.LehetOratFelvenniTTFNelkul && !Model.TanarKezelhetHelyettesitest)
|
||||
{
|
||||
var szoveg = string.Empty;
|
||||
if (Model.HelyettesitendoTanarnakNincsOttOraja)
|
||||
{
|
||||
szoveg = OrarendResource.HelyettesitendoTanarnakNincsOttOraja;
|
||||
}
|
||||
else if (Model.HelyettesitendoTanarOrajatMarNaploztak)
|
||||
{
|
||||
szoveg = OrarendResource.HelyettesitendoTanarOrajatMarNaploztak;
|
||||
}
|
||||
else
|
||||
{
|
||||
szoveg = ErrorResource.AJelenlegiRendszerbeallitasokNemTeszikLehetoveAFunkciokHasznalatat;
|
||||
}
|
||||
<div class="row hibaRow" style="text-align: center;">
|
||||
<h4>@szoveg</h4>
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
Reference in New Issue
Block a user