93 lines
4.0 KiB
Plaintext
93 lines
4.0 KiB
Plaintext
@model VirtualTask.Models.Chiusure
|
|
|
|
@{
|
|
ViewData["Title"] = "Modifica";
|
|
Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml";
|
|
}
|
|
|
|
@* <h1>Modifica</h1> *@
|
|
|
|
<h4 hidden>Chiusure</h4>
|
|
<hr />
|
|
<div class="agy-project-wrapper agy-project-page-wrapper">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<form asp-action="Edit">
|
|
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
|
|
|
<div class="form-group">
|
|
<label asp-for="cccodice" class="control-label"></label>
|
|
@*<input asp-for="cccodice" class="form-control" />*@
|
|
@Html.HiddenFor(x => x.cccodice)
|
|
@Html.DisplayFor(model => model.cccodice)
|
|
<span asp-validation-for="cccodice" class="text-danger"></span>
|
|
</div>
|
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
|
<div class="form-group">
|
|
@* <label asp-for="ccdescr" class="control-label"></label> *@
|
|
@* <input asp-for="ccdescr" class="form-control" /> *@
|
|
<input asp-for="ccdescr" class="agy-form-field require" class="form-control" />
|
|
<span asp-validation-for="ccdescr" class="text-danger"></span>
|
|
</div>
|
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
|
<div class="form-group">
|
|
@* <label asp-for="ccdessup" class="control-label"></label> *@
|
|
@* <input asp-for="ccdessup" class="form-control" /> *@
|
|
<input asp-for="ccdessup" class="agy-form-field require" class="form-control" />
|
|
<span asp-validation-for="ccdessup" class="text-danger"></span>
|
|
</div>
|
|
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
|
<div class="form-group">
|
|
<input type="submit" value="Salva" class="agy-btn submitForm" />
|
|
</div>
|
|
@Html.HiddenFor(x => x.cccodazi)
|
|
@Html.HiddenFor(x => x.ccflfatt)
|
|
@Html.HiddenFor(x => x.ccflrep)
|
|
@Html.HiddenFor(x => x.cctipcod)
|
|
@Html.HiddenFor(x => x.ccgruppo)
|
|
@Html.HiddenFor(x => x.ccimpint)
|
|
@Html.HiddenFor(x => x.ccimpman)
|
|
@Html.HiddenFor(x => x.ccserint)
|
|
@Html.HiddenFor(x => x.ccserman)
|
|
@Html.HiddenFor(x => x.ccnumore)
|
|
@Html.HiddenFor(x => x.ccperman)
|
|
@Html.HiddenFor(x => x.corecom)
|
|
@Html.HiddenFor(x => x.codtobso)
|
|
@Html.HiddenFor(x => x.ccriapre)
|
|
@Html.HiddenFor(x => x.ccchiint)
|
|
@Html.HiddenFor(x => x.ccrapabi)
|
|
@Html.HiddenFor(x => x.ccrapobb)
|
|
@* <div class="form-group">
|
|
<input type="submit" value="Salva" class="btn btn-primary" />
|
|
</div> *@
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<a asp-action="Index">Torna alla lista</a>
|
|
</div>
|
|
@section Scripts {
|
|
@{
|
|
await Html.RenderPartialAsync("_ValidationScriptsPartial");
|
|
}
|
|
}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@* <div class="row">
|
|
<div class="col-md-4">
|
|
|
|
</div>
|
|
</div> *@
|
|
|
|
@* <div>
|
|
<a asp-action="Index">Torna alla lista</a>
|
|
</div> *@
|
|
|
|
@* @section Scripts {
|
|
@{await Html.RenderPartialAsync("_ValidationScriptsPartial");}
|
|
} *@
|