-
Notifications
You must be signed in to change notification settings - Fork 304
Open
Description
<table>
<thead>
<tr>
<th>@Html.DisplayNameFor(model => model.ProfilePictureURL)</th>
<th>@Html.DisplayNameFor(model => model.FullName)</th>
<th>@Html.DisplayNameFor(model => model.Bio)</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
**@foreach (var item in Model)**
{
<tr>
<td class="align-middle">
<img class="rounded-circle" src="@item.ProfilePictureURL" alt="@item.FullName" style="max-width: 150px" />
</td>
<td class="align-middle">
@Html.DisplayFor(modelItem => item.FullName)
</td>
<td class="align-middle">
@Html.DisplayFor(modelItem => item.Bio)
</td>
<td class="align-middle">
<a class="btn btn-outline-primary"><i class="bi bi-pencil-square"></i>Edit </a> |
<a class="btn btn-outline-info"><i class="bi bi-eye"></i>Details </a> |
<a class="btn btn-danger text-white"><i class="bi bi-trash"></i>Delete </a>
</td>
</tr>
}
</tbody>
</table>
Metadata
Metadata
Assignees
Labels
No labels
