mirror of
https://github.com/guilhermewerner/gerencia-projetos
synced 2025-06-22 01:45:20 +00:00
New Migration
This commit is contained in:
.vs/GerenciaProjetos/v15
GerenciaProjetos
Controllers
Data
Migrations
20190921210818_2.cs20190922115736_1.Designer.cs20190922115736_1.cs20190922115947_2.Designer.cs20190922115947_2.csGerenciaContextModelSnapshot.cs
Models
Views
bin
Debug
obj
Debug
netcoreapp2.2
47
GerenciaProjetos/Views/Bugs/Form.cshtml
Normal file
47
GerenciaProjetos/Views/Bugs/Form.cshtml
Normal file
@ -0,0 +1,47 @@
|
||||
|
||||
@{
|
||||
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||
}
|
||||
|
||||
@model GerenciaProjetos.Models.Bug
|
||||
|
||||
<h3>@ViewData["Title"]</h3>
|
||||
|
||||
<section class="py-3">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<form method="post">
|
||||
<div class="form-group">
|
||||
<label>Desenvolvedor</label>
|
||||
<select asp-for="DesenvolvedorId" class="form-control" asp-items="ViewBag.Desenvolvedores">
|
||||
<option></option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Requisito</label>
|
||||
<select asp-for="RequisitoId" class="form-control" asp-items="ViewBag.Requisitos">
|
||||
<option></option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Criador</label>
|
||||
<select asp-for="CriadorId" class="form-control" asp-items="ViewBag.Desenvolvedores">
|
||||
<option></option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Prioridade</label>
|
||||
<select asp-for="Prioridade" class="form-control">
|
||||
<option>Normal</option>
|
||||
<option>Baixa</option>
|
||||
<option>Alta</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="text-right">
|
||||
<a class="btn btn-secondary" asp-area="" asp-controller="Bugs" asp-action="Index" asp-route-id="">Cancelar</a>
|
||||
<button type="submit" class="btn btn-primary">Confirmar</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
Reference in New Issue
Block a user