mirror of
https://github.com/guilhermewerner/gerencia-projetos
synced 2025-06-16 23:15:05 +00:00
Fix Bugs
This commit is contained in:
@ -24,10 +24,14 @@
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Criador</label>
|
||||
<select asp-for="CriadorId" class="form-control" asp-items="ViewBag.Desenvolvedores">
|
||||
<option></option>
|
||||
</select>
|
||||
<div class="custom-control custom-checkbox">
|
||||
<input type="checkbox" class="custom-control-input" id="admin" asp-for="FoiResolvido">
|
||||
<label class="custom-control-label" for="admin">Foi Resolvido?</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Descrição</label>
|
||||
<textarea class="form-control" rows="5" asp-for="Descricao"></textarea>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Prioridade</label>
|
||||
|
@ -26,7 +26,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>
|
||||
@ -37,7 +38,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