This commit is contained in:
Guilherme
2019-09-24 10:46:39 -03:00
parent 2802ef55b1
commit 34ab942f91
57 changed files with 1044 additions and 896 deletions

View File

@ -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>

View File

@ -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>