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

207 lines
7.4 KiB
Plaintext

@{
ViewData["Title"] = "Dashboard";
}
<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">
<a class="text-decoration-none" asp-area="" asp-controller="Desenvolvedor" asp-action="Index">Desenvolvedores</a>
</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>
<section class="py-3">
<div class="card">
<div class="card-header">
<div class="row">
<div class="col-6">
<a class="text-decoration-none" asp-area="" asp-controller="Projetos" asp-action="Index">Projetos</a>
</div>
<div class="col-6">
<div class="text-right">
<a asp-area="" asp-controller="Projetos" 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">Data de Entrega</th>
<th scope="col">Solicitante</th>
<th scope="col">Opções</th>
</tr>
</thead>
<tbody>
@foreach (Projeto p in ViewBag.Projetos)
{
<tr>
<td>@p.Id</td>
<td>@p.Nome</td>
<td>@p.DataEntrega</td>
<td>@p.Solicitante</td>
<td>
<a asp-area="" asp-controller="Projetos" asp-action="Edit" asp-route-id="@p.Id">
<i class="fas fa-edit"></i>
</a>
<a asp-area="" asp-controller="Projetos" asp-action="Del" asp-route-id="@p.Id">
<i class="fas fa-trash"></i>
</a>
</td>
</tr>
}
</tbody>
</table>
</div>
</section>
<section class="py-3">
<div class="card">
<div class="card-header">
<div class="row">
<div class="col-6">
Requisitos
</div>
<div class="col-6">
<div class="text-right">
<a asp-area="" asp-controller="Home" asp-action="Index">
<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">Descrição</th>
<th scope="col">Observações</th>
<th scope="col">Data de Entrega</th>
<th scope="col">Opções</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Guilherme</td>
<td>Abril</td>
<td>Kewin</td>
<td>
<a asp-area="" asp-controller="Home" asp-action="" asp-route-id="u.Id">
<i class="fas fa-edit"></i>
</a>
<a asp-area="" asp-controller="Home" asp-action="" asp-route-id="u.Id">
<i class="fas fa-trash"></i>
</a>
</td>
</tr>
</tbody>
</table>
</div>
</section>
<section class="py-3">
<div class="card">
<div class="card-header">
<div class="row">
<div class="col-6">
Bugs
</div>
<div class="col-6">
<div class="text-right">
<a asp-area="" asp-controller="Home" asp-action="Index">
<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">Prioridade</th>
<th scope="col">Data de Cadastro</th>
<th scope="col">Data de Entrega</th>
<th scope="col">Resolvido</th>
<th scope="col">Opções</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Guilherme</td>
<td>Abril</td>
<td>Kewin</td>
<td>Não</td>
<td>
<a asp-area="" asp-controller="Home" asp-action="" asp-route-id="u.Id">
<i class="fas fa-edit"></i>
</a>
<a asp-area="" asp-controller="Home" asp-action="" asp-route-id="u.Id">
<i class="fas fa-trash"></i>
</a>
</td>
</tr>
</tbody>
</table>
</div>
</section>