Files
gerencia-projetos/GerenciaProjetos/Views/Desenvolvedor/Index.cshtml
2019-09-22 07:51:57 -03:00

66 lines
2.2 KiB
Plaintext

@{
ViewData["Title"] = "Desenvolvedores";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<h3>@ViewData["Title"]</h3>
<p>Subtitulo.</p>
<section class="py-3">
<div class="card">
<div class="card-header">
<div class="row">
<div class="col-6">
1
</div>
<div class="col-6">
<div class="text-right">
<a asp-area="" asp-controller="Desenvolvedor" asp-action="New">
<i class="fas fa-plus-circle"></i>
</a>
</div>
</div>
</div>
</div>
<table class="table table-borderless table-hover">
<thead class="border-bottom">
<tr>
<th scope="col">#</th>
<th scope="col">Nome</th>
<th scope="col">Email</th>
<th scope="col">Admin</th>
<th scope="col">Opções</th>
</tr>
</thead>
<tbody>
@foreach (Desenvolvedor d in ViewBag.Desenvolvedores)
{
<tr>
<td>@d.Id</td>
<td>@d.Nome</td>
<td>@d.Email</td>
<td>
@if (d.EAdmin == true)
{
<span>Sim</span>
}
else
{
<span>Não</span>
}
</td>
<td>
<a asp-area="" asp-controller="Desenvolvedor" asp-action="Edit" asp-route-id="@d.Id">
<i class="fas fa-edit"></i>
</a>
<a asp-area="" asp-controller="Desenvolvedor" asp-action="Del" asp-route-id="@d.Id">
<i class="fas fa-trash"></i>
</a>
</td>
</tr>
}
</tbody>
</table>
</div>
</section>