14 lines
497 B
Text
14 lines
497 B
Text
@using Kreta.Web.Areas.Tantargy.Models
|
|
@using Kreta.Web.Classes
|
|
|
|
@model NewTanmenetModel
|
|
|
|
<div class="container-fluid details">
|
|
@using (Html.KretaForm("NewTanmenetForm"))
|
|
{
|
|
<div class="row">
|
|
@Html.KretaComboBoxFor(x => x.FoglalkozasId, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = Model.ApiControllerName, action = "GetFoglalkozasList" }), "Text", "Value").RenderWithName(3, 9)
|
|
</div>
|
|
@Html.KretaValidationSummary()
|
|
}
|
|
</div>
|