michele: giri
This commit is contained in:
parent
ca8598236b
commit
aaeea5fa5a
@ -7,7 +7,7 @@ namespace SoftwayWeb.Models
|
||||
[Display(Name = "Seriale Giro")]
|
||||
public string? SerialeGiro { get; set; }
|
||||
|
||||
[Display(Name = "Data")]
|
||||
[Display(Name = "Data giro")]
|
||||
public DateTime? DataGiro { get; set; }
|
||||
|
||||
[Display(Name = "Cod. Autista")]
|
||||
|
||||
@ -27,13 +27,21 @@
|
||||
<br />
|
||||
<div>@Html.TextBox("data", null, new { type = "date", @class = "agy-form-field require" })</div>
|
||||
<br />
|
||||
<div>
|
||||
@Html.CheckBox("aperto", new { placeholder ="aperto", @checked = true, })
|
||||
@Html.Label("aperto", "aperto")
|
||||
|
||||
|
||||
</div>
|
||||
<br />
|
||||
|
||||
<div style="float:left;width:57%;"><input type="submit" value="Cerca" class="agy-btn submitForm" /></div>
|
||||
}
|
||||
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Seriale giro</th>
|
||||
@* <th>Seriale giro</th> *@
|
||||
<th>Data</th>
|
||||
<th>Cod. Autista</th>
|
||||
<th>Autista</th>
|
||||
@ -77,9 +85,7 @@
|
||||
@foreach (var item in Model)
|
||||
{
|
||||
<tr>
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.SerialeGiro)
|
||||
</td>
|
||||
|
||||
<td>
|
||||
@Html.DisplayFor(modelItem => item.DataGiro)
|
||||
</td>
|
||||
@ -105,6 +111,9 @@
|
||||
@Html.DisplayFor(modelItem => item.DataChiusura)
|
||||
</td>
|
||||
<td>
|
||||
@Html.HiddenFor(modelItem => item.SerialeGiro)
|
||||
</td>
|
||||
<td>
|
||||
@* @Html.ActionLink("Chiudi", "Chiudi", new { id=item.SerialeGiro }) |
|
||||
@Html.ActionLink("Elimina", "Elimina", new { id=item.SerialeGiro })*@
|
||||
|
||||
|
||||
@ -20,6 +20,7 @@
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
||||
<br />
|
||||
<br />
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12">
|
||||
<div class="agy-field-holder">
|
||||
<input asp-for="password" class="agy-form-field require" placeholder="Password" />
|
||||
@ -28,6 +29,7 @@
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
|
||||
<div class="col-lg-12 col-md-12 col-sm-12 col-12">
|
||||
<input type="submit" value="Login" class="agy-btn submitForm" />
|
||||
<div class="response"></div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user