37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
@model IList<EveryThing.Models.IdentityApplicationUser>
|
|
|
|
<table class="table card-table">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
Ime
|
|
</th>
|
|
<th>
|
|
Priimek
|
|
</th>
|
|
<th style="width: 140px;">
|
|
Uporabniško ime
|
|
</th>
|
|
<th style="width: 30px;"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var item in Model)
|
|
{
|
|
<tr>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.Name)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.Surname)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.UserName)
|
|
</td>
|
|
<td class="text-right">
|
|
<a class="btn btn-xs icon-btn btn-outline-secondary borderless" asp-page="/AdministrationUsers/Edit" asp-route-idCompany="@ViewBag.IdCompany" asp-route-idUser="@item.Id" data-toggle="tooltip" data-placement="top" title="Urejanje" data-state="secondary"><i class="fas fa-pencil-alt"></i></a>
|
|
</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table> |