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