mirror of
https://github.com/guilhermewerner/gerencia-projetos
synced 2025-06-16 15:05:39 +00:00
Fix Bugs
This commit is contained in:
@ -26,7 +26,7 @@
|
||||
<th scope="col">#</th>
|
||||
<th scope="col">Nome</th>
|
||||
<th scope="col">Email</th>
|
||||
<th scope="col">Admin</th>
|
||||
<th scope="col">É Admin</th>
|
||||
<th scope="col">Opções</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@ -37,16 +37,7 @@
|
||||
<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>@d.EAdmin</td>
|
||||
<td>
|
||||
<a asp-area="" asp-controller="Desenvolvedores" asp-action="Edit" asp-route-id="@d.Id">
|
||||
<i class="fas fa-edit"></i>
|
||||
@ -133,6 +124,7 @@
|
||||
<th scope="col">#</th>
|
||||
<th scope="col">Descrição</th>
|
||||
<th scope="col">Observações</th>
|
||||
<th scope="col">É Funcional</th>
|
||||
<th scope="col">Data de Cadastro</th>
|
||||
<th scope="col">Data de Entrega</th>
|
||||
<th scope="col">Opções</th>
|
||||
@ -145,6 +137,7 @@
|
||||
<td>@r.Id</td>
|
||||
<td>@r.Descricao</td>
|
||||
<td>@r.Observacoes</td>
|
||||
<td>@r.EFuncional</td>
|
||||
<td>@r.DataCadastro</td>
|
||||
<td>@r.DataEntrega</td>
|
||||
<td>
|
||||
@ -182,7 +175,8 @@
|
||||
<thead class="border-bottom">
|
||||
<tr>
|
||||
<th scope="col">#</th>
|
||||
<th scope="col">Criador</th>
|
||||
<th scope="col">Descrição</th>
|
||||
<th scope="col">Foi Resolvido</th>
|
||||
<th scope="col">Data de Cadastro</th>
|
||||
<th scope="col">Prioridade</th>
|
||||
<th scope="col">Opções</th>
|
||||
@ -193,7 +187,8 @@
|
||||
{
|
||||
<tr>
|
||||
<td>@b.Id</td>
|
||||
<td>@b.CriadorId</td>
|
||||
<td>@b.Descricao</td>
|
||||
<td>@b.FoiResolvido</td>
|
||||
<td>@b.DataCadastro</td>
|
||||
<td>@b.Prioridade</td>
|
||||
<td>
|
||||
|
Reference in New Issue
Block a user