VirtualTask/Views/AziendaRif/Index.cshtml

94 lines
2.8 KiB
Plaintext

@model IPagedList<VirtualTask.Models.AziendaRif>
@using X.PagedList;
@using X.PagedList.Mvc.Core;
@using X.PagedList.Web.Common;
@{
ViewData["Title"] = "Index";
}
<h1>Dati azienda</h1>
@using (Html.BeginForm())
{
<p>
Cerca per tecnico: @Html.TextBox("SearchString")
<input type="submit" value="Cerca" />
</p>
}
<table class="table">
<thead>
<tr>
<th>
@*@Html.DisplayNameFor(model => model.piazihoc)*@
Azienda
</th>
<th>
@*@Html.DisplayNameFor(model => model.picodtec)*@
Codice tecnico
</th>
<th>
@*@Html.DisplayNameFor(model => model.pirifazi)*@
Azienda riferimento
</th>
<th>
@*@Html.DisplayNameFor(model => model.pinomede)*@
Azienda collegata
</th>
<th>
@*@Html.DisplayNameFor(model => model.pilogurl)*@
Url logo
</th>
<th>
@*@Html.DisplayNameFor(model => model.pitextin)*@
Testo rapportino
</th>
<th></th>
</tr>
</thead>
<tbody>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.piazihoc)
</td>
<td>
@Html.DisplayFor(modelItem => item.picodtec)
</td>
<td>
@Html.DisplayFor(modelItem => item.pirifazi)
</td>
<td>
@Html.DisplayFor(modelItem => item.pinomede)
</td>
<td>
@Html.DisplayFor(modelItem => item.pilogurl)
</td>
<td>
@Html.DisplayFor(modelItem => item.pitextin)
</td>
<td>
@Html.ActionLink("Modifica", "Edit", new { id=item.picodtec }) |
@Html.ActionLink("Dettaglio", "Details", new { id=item.picodtec }) |
@Html.ActionLink("Elimina", "Delete", new { id=item.picodtec })
</td>
</tr>
}
</tbody>
</table>
<br />
<nav>
@Html.PagedListPager(Model, page => Url.Action("index", new { page = page, searchString=@ViewData["CurrentFilter"] }), new PagedListRenderOptions()
{
ActiveLiElementClass = "active",
PageClasses = new[]{ "page-link"},
LiElementClasses=new[] { "page-item" },
UlElementClasses = new[] { "pagination","justify-content-center", "mt-3" },
LinkToNextPageFormat = "Successiva",
LinkToPreviousPageFormat = "Precedente",
MaximumPageNumbersToDisplay = 5,
DisplayLinkToPreviousPage = PagedListDisplayMode.Always,
DisplayLinkToNextPage = PagedListDisplayMode.Always
})
</nav>