31 lines
690 B
Text
31 lines
690 B
Text
@using Kreta.Web.Areas.Orarend.Models;
|
|
|
|
@model TanuloHaziFeladatMentesModel
|
|
|
|
@{
|
|
Layout = null;
|
|
}
|
|
|
|
<div id="TanuloHazifeladatValidation">
|
|
@Html.KretaValidationSummary()
|
|
</div>
|
|
<div class="container-fluid">
|
|
@if (Model.TanarHaziFeladatId != null)
|
|
{
|
|
@Html.HiddenFor(m => m.TanarHaziFeladatId)
|
|
}
|
|
else
|
|
{
|
|
<div class="row">
|
|
<div class="col-sm-4">
|
|
@Html.KretaDatePickerFor(x => x.Hatarido).RenderWithName(isCustomRequired: true)
|
|
</div>
|
|
</div>
|
|
}
|
|
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
@Html.KretaHtmlEditorFor(m => m.FeladatSzovege, false)
|
|
</div>
|
|
</div>
|
|
</div>
|