init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
88
KretaWeb/Views/Shared/Gondviselo4TAdatokEditor.cshtml
Normal file
88
KretaWeb/Views/Shared/Gondviselo4TAdatokEditor.cshtml
Normal file
|
@ -0,0 +1,88 @@
|
|||
@using Kreta.Web.Helpers
|
||||
@using Kreta.Web.Models
|
||||
|
||||
@model Gondviselo4TAdatokModel
|
||||
|
||||
<div class="row">
|
||||
@if (Model.IsEditable)
|
||||
{
|
||||
<text>
|
||||
@Html.KretaDropdownListFor(x => x.Elotag, Kreta.Core.Constants.ElotagList.Select(x => new SelectListItem { Text = x, Value = x })).RenderWithName(3, 3)
|
||||
</text>
|
||||
}
|
||||
else
|
||||
{
|
||||
<text>
|
||||
@Html.KretaLabelFor(x => x.Elotag, 3, 3)
|
||||
</text>
|
||||
}
|
||||
</div>
|
||||
<div class="row">
|
||||
@if (Model.IsEditable)
|
||||
{
|
||||
<text>
|
||||
@Html.KretaTextBoxFor(x => x.Vezeteknev).RenderWithName(3, 3)
|
||||
@Html.KretaTextBoxFor(x => x.SzuletesiVezeteknev).RenderWithName(3, 3)
|
||||
</text>
|
||||
}
|
||||
else
|
||||
{
|
||||
<text>
|
||||
@Html.KretaLabelFor(x => x.Vezeteknev, 3, 3)
|
||||
@Html.KretaLabelFor(x => x.SzuletesiVezeteknev, 3, 3)
|
||||
</text>
|
||||
}
|
||||
</div>
|
||||
<div class="row">
|
||||
@if (Model.IsEditable)
|
||||
{
|
||||
<text>
|
||||
@Html.KretaTextBoxFor(x => x.Utonev).RenderWithName(3, 3)
|
||||
@Html.KretaTextBoxFor(x => x.SzuletesiUtonev).RenderWithName(3, 3)
|
||||
</text>
|
||||
}
|
||||
else
|
||||
{
|
||||
<text>
|
||||
@Html.KretaLabelFor(x => x.Utonev, 3, 3)
|
||||
@Html.KretaLabelFor(x => x.SzuletesiUtonev, 3, 3)
|
||||
</text>
|
||||
}
|
||||
</div>
|
||||
<div class="row">
|
||||
@if (Model.IsEditable)
|
||||
{
|
||||
<text>
|
||||
@Html.KretaTextBoxFor(x => x.AnyjaVezeteknev).RenderWithName(3, 3)
|
||||
@Html.KretaTextBoxFor(x => x.AnyjaUtonev).RenderWithName(3, 3)
|
||||
</text>
|
||||
}
|
||||
else
|
||||
{
|
||||
<text>
|
||||
@Html.KretaLabelFor(x => x.AnyjaVezeteknev, 3, 3)
|
||||
@Html.KretaLabelFor(x => x.AnyjaUtonev, 3, 3)
|
||||
</text>
|
||||
}
|
||||
</div>
|
||||
<div class="row">
|
||||
@if (Model.IsEditable)
|
||||
{
|
||||
<text>
|
||||
@Html.KretaTextBoxFor(x => x.SzuletesiHely).RenderWithName(3, 3)
|
||||
<div class="@BootsrapHelper.GetSizeClasses(3)">
|
||||
@Html.KretaInputLabelFor(x => x.SzuletesiDatum)
|
||||
</div>
|
||||
<div class="@BootsrapHelper.GetSizeClasses(3)">
|
||||
@Html.KretaDatePickerFor(x => x.SzuletesiDatum).Max(DateTime.Now).RenderWithMask()
|
||||
</div>
|
||||
</text>
|
||||
}
|
||||
else
|
||||
{
|
||||
<text>
|
||||
@Html.KretaLabelFor(x => x.SzuletesiHely, 3, 3)
|
||||
@Html.KretaLabelFor(x => x.SzuletesiDatumStr, 3, 3)
|
||||
</text>
|
||||
}
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue