mirror of
https://github.com/guilhermewerner/gerencia-projetos
synced 2025-06-16 23:15:05 +00:00
Fix Bugs
This commit is contained in:
@ -11,6 +11,18 @@
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<form method="post">
|
||||
<div class="form-group">
|
||||
<label>Projeto</label>
|
||||
<select asp-for="ProjetoId" class="form-control" asp-items="ViewBag.Projetos">
|
||||
<option></option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="custom-control custom-checkbox">
|
||||
<input type="checkbox" class="custom-control-input" id="admin" asp-for="EFuncional">
|
||||
<label class="custom-control-label" for="admin">É Fucional?</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Descrição</label>
|
||||
<textarea class="form-control" rows="5" asp-for="Descricao"></textarea>
|
||||
@ -19,12 +31,6 @@
|
||||
<label>Observações</label>
|
||||
<textarea class="form-control" rows="5" asp-for="Observacoes"></textarea>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Projeto</label>
|
||||
<select asp-for="ProjetoId" class="form-control" asp-items="ViewBag.Projetos">
|
||||
<option></option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Data de Entrega</label>
|
||||
<input type="date" class="form-control" asp-for="DataEntrega">
|
||||
|
@ -28,6 +28,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>
|
||||
@ -40,6 +41,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>
|
||||
|
Reference in New Issue
Block a user