mirror of
https://github.com/guilhermewerner/gerencia-projetos
synced 2025-06-15 14:35:12 +00:00
New Migration
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -6,6 +6,7 @@ using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using GerenciaProjetos.Models;
|
||||
using GerenciaContext = GerenciaProjetos.Data.GerenciaContext;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
|
||||
namespace GerenciaProjetos.Controllers
|
||||
{
|
||||
@ -16,13 +17,117 @@ namespace GerenciaProjetos.Controllers
|
||||
public BugsController(GerenciaContext ctx)
|
||||
{
|
||||
this.ctx = ctx;
|
||||
|
||||
Requisito dev = ctx.Requisitos.Find(1);
|
||||
}
|
||||
|
||||
public IActionResult Index()
|
||||
{
|
||||
ViewBag.Bugs = ctx.Bugs;
|
||||
|
||||
return View();
|
||||
}
|
||||
|
||||
public IActionResult New()
|
||||
{
|
||||
ViewData["Title"] = "Novo";
|
||||
|
||||
ViewBag.Desenvolvedores = ctx.Desenvolvedores.OrderBy(d => d.Nome).Select(d => new SelectListItem
|
||||
{
|
||||
Text = d.Nome,
|
||||
Value = d.Id.ToString()
|
||||
});
|
||||
|
||||
ViewBag.Requisitos = ctx.Requisitos.OrderBy(r => r.Descricao).Select(r => new SelectListItem
|
||||
{
|
||||
Text = r.Descricao,
|
||||
Value = r.Id.ToString()
|
||||
});
|
||||
|
||||
return View("Form");
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public IActionResult New(Bug bug)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
bug.DataCadastro = DateTime.Now;
|
||||
|
||||
ctx.Bugs.Add(bug);
|
||||
ctx.SaveChanges();
|
||||
|
||||
return RedirectToAction("Index", "Home");
|
||||
}
|
||||
else
|
||||
{
|
||||
return View("Form", bug);
|
||||
}
|
||||
}
|
||||
|
||||
public IActionResult Edit(int id)
|
||||
{
|
||||
ViewData["Title"] = "Editar";
|
||||
|
||||
ViewBag.Desenvolvedores = ctx.Desenvolvedores.OrderBy(d => d.Nome).Select(d => new SelectListItem
|
||||
{
|
||||
Text = d.Nome,
|
||||
Value = d.Id.ToString()
|
||||
});
|
||||
|
||||
ViewBag.Requisitos = ctx.Requisitos.OrderBy(r => r.Descricao).Select(r => new SelectListItem
|
||||
{
|
||||
Text = r.Descricao,
|
||||
Value = r.Id.ToString()
|
||||
});
|
||||
|
||||
Bug bug = ctx.Bugs.Find(id);
|
||||
|
||||
if (bug != null)
|
||||
{
|
||||
return View("Form", bug);
|
||||
}
|
||||
else
|
||||
{
|
||||
return RedirectToAction("Index", "Home");
|
||||
}
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
[ValidateAntiForgeryToken]
|
||||
public IActionResult Edit(Bug bug)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
/*
|
||||
ctx.Entry(bug).Property(r => r.DesenvolvedorId).IsModified = true;
|
||||
ctx.Entry(bug).Property(r => r.RequisitoId).IsModified = true;
|
||||
ctx.Entry(bug).Property(r => r.CriadorId).IsModified = true;
|
||||
ctx.Entry(bug).Property(r => r.Prioridade).IsModified = true;
|
||||
*/
|
||||
|
||||
bug.DataCadastro = DateTime.Now;
|
||||
|
||||
ctx.Bugs.Update(bug);
|
||||
ctx.SaveChanges();
|
||||
|
||||
return RedirectToAction("Index", "Home");
|
||||
}
|
||||
else
|
||||
{
|
||||
return View("Form", bug);
|
||||
}
|
||||
}
|
||||
|
||||
public IActionResult Del(int id)
|
||||
{
|
||||
Bug bug = ctx.Bugs.Find(id);
|
||||
|
||||
if (bug != null)
|
||||
{
|
||||
ctx.Bugs.Remove(bug);
|
||||
ctx.SaveChanges();
|
||||
}
|
||||
|
||||
return RedirectToAction("Index", "Home");
|
||||
}
|
||||
}
|
||||
}
|
@ -9,11 +9,11 @@ using GerenciaContext = GerenciaProjetos.Data.GerenciaContext;
|
||||
|
||||
namespace GerenciaProjetos.Controllers
|
||||
{
|
||||
public class DesenvolvedoresController : Controller
|
||||
public class DesenvolvedorsController : Controller
|
||||
{
|
||||
private GerenciaContext ctx;
|
||||
|
||||
public DesenvolvedoresController(GerenciaContext ctx)
|
||||
public DesenvolvedorsController(GerenciaContext ctx)
|
||||
{
|
||||
this.ctx = ctx;
|
||||
}
|
||||
|
@ -23,6 +23,7 @@ namespace GerenciaProjetos.Controllers
|
||||
ViewBag.Desenvolvedores = ctx.Desenvolvedores;
|
||||
ViewBag.Projetos = ctx.Projetos;
|
||||
ViewBag.Requisitos = ctx.Requisitos;
|
||||
ViewBag.Bugs = ctx.Bugs;
|
||||
|
||||
return View();
|
||||
}
|
||||
|
@ -24,8 +24,6 @@ namespace GerenciaProjetos.Data
|
||||
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Bug>()
|
||||
.HasKey(b => new { b.DesenvolvedorId, b.RequisitoId });
|
||||
modelBuilder.Entity<DesenvolvedorProjeto>()
|
||||
.HasKey(p => new { p.DesenvolvedorId, p.ProjetoId });
|
||||
modelBuilder.Entity<DesenvolvedorRequisito>()
|
||||
|
@ -1,84 +0,0 @@
|
||||
using System;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
namespace GerenciaProjetos.Migrations
|
||||
{
|
||||
public partial class _2 : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<TimeSpan>(
|
||||
name: "TempoGasto",
|
||||
table: "DesenvolvedorRequisito",
|
||||
nullable: false,
|
||||
defaultValue: new TimeSpan(0, 0, 0, 0, 0));
|
||||
|
||||
migrationBuilder.AddColumn<int>(
|
||||
name: "CriadorId",
|
||||
table: "Bugs",
|
||||
nullable: false,
|
||||
defaultValue: 0);
|
||||
|
||||
migrationBuilder.AddColumn<DateTime>(
|
||||
name: "DataCadastro",
|
||||
table: "Bugs",
|
||||
nullable: false,
|
||||
defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified));
|
||||
|
||||
migrationBuilder.AddColumn<bool>(
|
||||
name: "FoiResolvido",
|
||||
table: "Bugs",
|
||||
nullable: false,
|
||||
defaultValue: false);
|
||||
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "Prioridade",
|
||||
table: "Bugs",
|
||||
nullable: true);
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Bugs_CriadorId",
|
||||
table: "Bugs",
|
||||
column: "CriadorId");
|
||||
|
||||
migrationBuilder.AddForeignKey(
|
||||
name: "FK_Bugs_Desenvolvedores_CriadorId",
|
||||
table: "Bugs",
|
||||
column: "CriadorId",
|
||||
principalTable: "Desenvolvedores",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropForeignKey(
|
||||
name: "FK_Bugs_Desenvolvedores_CriadorId",
|
||||
table: "Bugs");
|
||||
|
||||
migrationBuilder.DropIndex(
|
||||
name: "IX_Bugs_CriadorId",
|
||||
table: "Bugs");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "TempoGasto",
|
||||
table: "DesenvolvedorRequisito");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "CriadorId",
|
||||
table: "Bugs");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "DataCadastro",
|
||||
table: "Bugs");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "FoiResolvido",
|
||||
table: "Bugs");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "Prioridade",
|
||||
table: "Bugs");
|
||||
}
|
||||
}
|
||||
}
|
@ -9,7 +9,7 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||||
namespace GerenciaProjetos.Migrations
|
||||
{
|
||||
[DbContext(typeof(GerenciaContext))]
|
||||
[Migration("20190921210546_1")]
|
||||
[Migration("20190922115736_1")]
|
||||
partial class _1
|
||||
{
|
||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||
@ -21,11 +21,26 @@ namespace GerenciaProjetos.Migrations
|
||||
|
||||
modelBuilder.Entity("GerenciaProjetos.Models.Bug", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd();
|
||||
|
||||
b.Property<int>("CriadorId");
|
||||
|
||||
b.Property<DateTime>("DataCadastro");
|
||||
|
||||
b.Property<int>("DesenvolvedorId");
|
||||
|
||||
b.Property<bool>("FoiResolvido");
|
||||
|
||||
b.Property<string>("Prioridade");
|
||||
|
||||
b.Property<int>("RequisitoId");
|
||||
|
||||
b.HasKey("DesenvolvedorId", "RequisitoId");
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("CriadorId");
|
||||
|
||||
b.HasIndex("DesenvolvedorId");
|
||||
|
||||
b.HasIndex("RequisitoId");
|
||||
|
||||
@ -131,6 +146,11 @@ namespace GerenciaProjetos.Migrations
|
||||
|
||||
modelBuilder.Entity("GerenciaProjetos.Models.Bug", b =>
|
||||
{
|
||||
b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Criador")
|
||||
.WithMany()
|
||||
.HasForeignKey("CriadorId")
|
||||
.OnDelete(DeleteBehavior.Cascade);
|
||||
|
||||
b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Desenvolvedor")
|
||||
.WithMany()
|
||||
.HasForeignKey("DesenvolvedorId")
|
@ -91,12 +91,24 @@ namespace GerenciaProjetos.Migrations
|
||||
name: "Bugs",
|
||||
columns: table => new
|
||||
{
|
||||
Id = table.Column<int>(nullable: false)
|
||||
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
||||
DesenvolvedorId = table.Column<int>(nullable: false),
|
||||
RequisitoId = table.Column<int>(nullable: false)
|
||||
RequisitoId = table.Column<int>(nullable: false),
|
||||
Prioridade = table.Column<string>(nullable: true),
|
||||
DataCadastro = table.Column<DateTime>(nullable: false),
|
||||
CriadorId = table.Column<int>(nullable: false),
|
||||
FoiResolvido = table.Column<bool>(nullable: false)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_Bugs", x => new { x.DesenvolvedorId, x.RequisitoId });
|
||||
table.PrimaryKey("PK_Bugs", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_Bugs_Desenvolvedores_CriadorId",
|
||||
column: x => x.CriadorId,
|
||||
principalTable: "Desenvolvedores",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
table.ForeignKey(
|
||||
name: "FK_Bugs_Desenvolvedores_DesenvolvedorId",
|
||||
column: x => x.DesenvolvedorId,
|
||||
@ -135,6 +147,16 @@ namespace GerenciaProjetos.Migrations
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Bugs_CriadorId",
|
||||
table: "Bugs",
|
||||
column: "CriadorId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Bugs_DesenvolvedorId",
|
||||
table: "Bugs",
|
||||
column: "DesenvolvedorId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Bugs_RequisitoId",
|
||||
table: "Bugs",
|
@ -9,7 +9,7 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||||
namespace GerenciaProjetos.Migrations
|
||||
{
|
||||
[DbContext(typeof(GerenciaContext))]
|
||||
[Migration("20190921210818_2")]
|
||||
[Migration("20190922115947_2")]
|
||||
partial class _2
|
||||
{
|
||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||
@ -21,22 +21,27 @@ namespace GerenciaProjetos.Migrations
|
||||
|
||||
modelBuilder.Entity("GerenciaProjetos.Models.Bug", b =>
|
||||
{
|
||||
b.Property<int>("DesenvolvedorId");
|
||||
|
||||
b.Property<int>("RequisitoId");
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd();
|
||||
|
||||
b.Property<int>("CriadorId");
|
||||
|
||||
b.Property<DateTime>("DataCadastro");
|
||||
|
||||
b.Property<int>("DesenvolvedorId");
|
||||
|
||||
b.Property<bool>("FoiResolvido");
|
||||
|
||||
b.Property<string>("Prioridade");
|
||||
|
||||
b.HasKey("DesenvolvedorId", "RequisitoId");
|
||||
b.Property<int>("RequisitoId");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("CriadorId");
|
||||
|
||||
b.HasIndex("DesenvolvedorId");
|
||||
|
||||
b.HasIndex("RequisitoId");
|
||||
|
||||
b.ToTable("Bugs");
|
24
GerenciaProjetos/Migrations/20190922115947_2.cs
Normal file
24
GerenciaProjetos/Migrations/20190922115947_2.cs
Normal file
@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
namespace GerenciaProjetos.Migrations
|
||||
{
|
||||
public partial class _2 : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<TimeSpan>(
|
||||
name: "TempoGasto",
|
||||
table: "DesenvolvedorRequisito",
|
||||
nullable: false,
|
||||
defaultValue: new TimeSpan(0, 0, 0, 0, 0));
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "TempoGasto",
|
||||
table: "DesenvolvedorRequisito");
|
||||
}
|
||||
}
|
||||
}
|
@ -19,22 +19,27 @@ namespace GerenciaProjetos.Migrations
|
||||
|
||||
modelBuilder.Entity("GerenciaProjetos.Models.Bug", b =>
|
||||
{
|
||||
b.Property<int>("DesenvolvedorId");
|
||||
|
||||
b.Property<int>("RequisitoId");
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd();
|
||||
|
||||
b.Property<int>("CriadorId");
|
||||
|
||||
b.Property<DateTime>("DataCadastro");
|
||||
|
||||
b.Property<int>("DesenvolvedorId");
|
||||
|
||||
b.Property<bool>("FoiResolvido");
|
||||
|
||||
b.Property<string>("Prioridade");
|
||||
|
||||
b.HasKey("DesenvolvedorId", "RequisitoId");
|
||||
b.Property<int>("RequisitoId");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("CriadorId");
|
||||
|
||||
b.HasIndex("DesenvolvedorId");
|
||||
|
||||
b.HasIndex("RequisitoId");
|
||||
|
||||
b.ToTable("Bugs");
|
||||
|
@ -9,8 +9,11 @@ namespace GerenciaProjetos.Models
|
||||
{
|
||||
public class Bug
|
||||
{
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
|
||||
public int DesenvolvedorId { get; set; }
|
||||
public Requisito Desenvolvedor { get; set; }
|
||||
public Desenvolvedor Desenvolvedor { get; set; }
|
||||
|
||||
public int RequisitoId { get; set; }
|
||||
public Requisito Requisito { get; set; }
|
||||
@ -20,7 +23,7 @@ namespace GerenciaProjetos.Models
|
||||
public DateTime DataCadastro { get; set; }
|
||||
|
||||
public int CriadorId { get; set; }
|
||||
public Requisito Criador { get; set; }
|
||||
public Desenvolvedor Criador { get; set; }
|
||||
|
||||
public bool FoiResolvido { get; set; }
|
||||
}
|
||||
|
@ -10,7 +10,7 @@ namespace GerenciaProjetos.Models
|
||||
public class DesenvolvedorProjeto
|
||||
{
|
||||
public int DesenvolvedorId { get; set; }
|
||||
public Requisito Desenvolvedor { get; set; }
|
||||
public Desenvolvedor Desenvolvedor { get; set; }
|
||||
|
||||
public int ProjetoId { get; set; }
|
||||
public Projeto Projeto { get; set; }
|
||||
|
@ -10,7 +10,7 @@ namespace GerenciaProjetos.Models
|
||||
public class DesenvolvedorRequisito
|
||||
{
|
||||
public int DesenvolvedorId { get; set; }
|
||||
public Requisito Desenvolvedor { get; set; }
|
||||
public Desenvolvedor Desenvolvedor { get; set; }
|
||||
|
||||
public int RequisitoId { get; set; }
|
||||
public Requisito Requisito { get; set; }
|
||||
|
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>
|
56
GerenciaProjetos/Views/Bugs/Index.cshtml
Normal file
56
GerenciaProjetos/Views/Bugs/Index.cshtml
Normal file
@ -0,0 +1,56 @@
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Requisitos";
|
||||
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||
}
|
||||
|
||||
<h3>@ViewData["Title"]</h3>
|
||||
|
||||
<section class="py-3">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
1
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<div class="text-right">
|
||||
<a asp-area="" asp-controller="Bugs" asp-action="New">
|
||||
<i class="fas fa-plus-circle"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<table class="table table-borderless table-hover">
|
||||
<thead class="border-bottom">
|
||||
<tr>
|
||||
<th scope="col">#</th>
|
||||
<th scope="col">Criador</th>
|
||||
<th scope="col">Data de Cadastro</th>
|
||||
<th scope="col">Prioridade</th>
|
||||
<th scope="col">Opções</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (Bug b in ViewBag.Bugs)
|
||||
{
|
||||
<tr>
|
||||
<td>@b.DesenvolvedorId-@b.RequisitoId</td>
|
||||
<td>@b.Criador</td>
|
||||
<td>@b.DataCadastro</td>
|
||||
<td>@b.Prioridade</td>
|
||||
<td>
|
||||
<a asp-area="" asp-controller="Bugs" asp-action="Edit" asp-route-id="@b.DesenvolvedorId, @b.RequisitoId">
|
||||
<i class="fas fa-edit"></i>
|
||||
</a>
|
||||
<a asp-area="" asp-controller="Bugs" asp-action="Del" asp-route-id="@b.DesenvolvedorId, @b.RequisitoId">
|
||||
<i class="fas fa-trash"></i>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</section>
|
@ -167,11 +167,11 @@
|
||||
<div class="card-header">
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
Bugs
|
||||
<a class="text-decoration-none" asp-area="" asp-controller="Bugs" asp-action="Index">Bugs</a>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<div class="text-right">
|
||||
<a asp-area="" asp-controller="Home" asp-action="Index">
|
||||
<a asp-area="" asp-controller="Bugs" asp-action="New">
|
||||
<i class="fas fa-plus-circle"></i>
|
||||
</a>
|
||||
</div>
|
||||
@ -182,29 +182,30 @@
|
||||
<thead class="border-bottom">
|
||||
<tr>
|
||||
<th scope="col">#</th>
|
||||
<th scope="col">Prioridade</th>
|
||||
<th scope="col">Criador</th>
|
||||
<th scope="col">Data de Cadastro</th>
|
||||
<th scope="col">Data de Entrega</th>
|
||||
<th scope="col">Resolvido</th>
|
||||
<th scope="col">Prioridade</th>
|
||||
<th scope="col">Opções</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>1</td>
|
||||
<td>Guilherme</td>
|
||||
<td>Abril</td>
|
||||
<td>Kewin</td>
|
||||
<td>Não</td>
|
||||
<td>
|
||||
<a asp-area="" asp-controller="Home" asp-action="" asp-route-id="u.Id">
|
||||
<i class="fas fa-edit"></i>
|
||||
</a>
|
||||
<a asp-area="" asp-controller="Home" asp-action="" asp-route-id="u.Id">
|
||||
<i class="fas fa-trash"></i>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
@foreach (Bug b in ViewBag.Bugs)
|
||||
{
|
||||
<tr>
|
||||
<td>@b.DesenvolvedorId-@b.RequisitoId</td>
|
||||
<td>@b.Criador</td>
|
||||
<td>@b.DataCadastro</td>
|
||||
<td>@b.Prioridade</td>
|
||||
<td>
|
||||
<a asp-area="" asp-controller="Bugs" asp-action="Edit" asp-route-id="@b.DesenvolvedorId, @b.RequisitoId">
|
||||
<i class="fas fa-edit"></i>
|
||||
</a>
|
||||
<a asp-area="" asp-controller="Bugs" asp-action="Del" asp-route-id="@b.DesenvolvedorId, @b.RequisitoId">
|
||||
<i class="fas fa-trash"></i>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
f5d0e88b6b4776bd7be0e689f2bc3ca5ab84cb30
|
||||
c7b3bbeab81fcd814f53f806904f8bea8e240001
|
||||
|
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
d3d45ed3bc191b1282a479614317faa09830210d
|
||||
0d0d065687e8ce64097948569b24ca13c4839e14
|
||||
|
@ -34,3 +34,5 @@ C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcor
|
||||
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Requisitos\Index.g.cshtml.cs
|
||||
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Desenvolvedores\Form.g.cshtml.cs
|
||||
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Desenvolvedores\Index.g.cshtml.cs
|
||||
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Bugs\Form.g.cshtml.cs
|
||||
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Bugs\Index.g.cshtml.cs
|
||||
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1,396 @@
|
||||
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea"
|
||||
// <auto-generated/>
|
||||
#pragma warning disable 1591
|
||||
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Bugs_Form), @"mvc.1.0.view", @"/Views/Bugs/Form.cshtml")]
|
||||
[assembly:global::Microsoft.AspNetCore.Mvc.Razor.Compilation.RazorViewAttribute(@"/Views/Bugs/Form.cshtml", typeof(AspNetCore.Views_Bugs_Form))]
|
||||
namespace AspNetCore
|
||||
{
|
||||
#line hidden
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
using Microsoft.AspNetCore.Mvc.ViewFeatures;
|
||||
#line 1 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml"
|
||||
using GerenciaProjetos;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml"
|
||||
using GerenciaProjetos.Models;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"3d53fe7d1a83e0834d25f430afe65fcab2e3dcea", @"/Views/Bugs/Form.cshtml")]
|
||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
|
||||
public class Views_Bugs_Form : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<GerenciaProjetos.Models.Bug>
|
||||
{
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("form-control"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("btn btn-secondary"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_2 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-area", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Bugs", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_4 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Index", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_5 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-route-id", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_6 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("method", "post", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
#line hidden
|
||||
#pragma warning disable 0169
|
||||
private string __tagHelperStringValueBuffer;
|
||||
#pragma warning restore 0169
|
||||
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext __tagHelperExecutionContext;
|
||||
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner __tagHelperRunner = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner();
|
||||
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __backed__tagHelperScopeManager = null;
|
||||
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __tagHelperScopeManager
|
||||
{
|
||||
get
|
||||
{
|
||||
if (__backed__tagHelperScopeManager == null)
|
||||
{
|
||||
__backed__tagHelperScopeManager = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager(StartTagHelperWritingScope, EndTagHelperWritingScope);
|
||||
}
|
||||
return __backed__tagHelperScopeManager;
|
||||
}
|
||||
}
|
||||
private global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper;
|
||||
private global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper;
|
||||
private global::Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper;
|
||||
private global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper;
|
||||
private global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper;
|
||||
#pragma warning disable 1998
|
||||
public async override global::System.Threading.Tasks.Task ExecuteAsync()
|
||||
{
|
||||
BeginContext(0, 2, true);
|
||||
WriteLiteral("\r\n");
|
||||
EndContext();
|
||||
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml"
|
||||
|
||||
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(56, 2, true);
|
||||
WriteLiteral("\r\n");
|
||||
EndContext();
|
||||
BeginContext(94, 6, true);
|
||||
WriteLiteral("\r\n<h3>");
|
||||
EndContext();
|
||||
BeginContext(101, 17, false);
|
||||
#line 8 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml"
|
||||
Write(ViewData["Title"]);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
EndContext();
|
||||
BeginContext(118, 102, true);
|
||||
WriteLiteral("</h3>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-body\">\r\n ");
|
||||
EndContext();
|
||||
BeginContext(220, 1569, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea6799", async() => {
|
||||
BeginContext(240, 114, true);
|
||||
WriteLiteral("\r\n <div class=\"form-group\">\r\n <label>Desenvolvedor</label>\r\n ");
|
||||
EndContext();
|
||||
BeginContext(354, 165, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea7301", async() => {
|
||||
BeginContext(445, 26, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(471, 17, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea7729", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||
}
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(488, 22, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper);
|
||||
#line 16 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml"
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.DesenvolvedorId);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0);
|
||||
#line 16 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml"
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Desenvolvedores;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute("asp-items", __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||
}
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(519, 134, true);
|
||||
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Requisito</label>\r\n ");
|
||||
EndContext();
|
||||
BeginContext(653, 156, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea10968", async() => {
|
||||
BeginContext(735, 26, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(761, 17, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea11397", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||
}
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(778, 22, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper);
|
||||
#line 22 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml"
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.RequisitoId);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0);
|
||||
#line 22 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml"
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Requisitos;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute("asp-items", __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||
}
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(809, 132, true);
|
||||
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Criador</label>\r\n ");
|
||||
EndContext();
|
||||
BeginContext(941, 159, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea14626", async() => {
|
||||
BeginContext(1026, 26, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(1052, 17, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea15057", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||
}
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1069, 22, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper);
|
||||
#line 28 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml"
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.CriadorId);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0);
|
||||
#line 28 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml"
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Desenvolvedores;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute("asp-items", __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||
}
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1100, 135, true);
|
||||
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Prioridade</label>\r\n ");
|
||||
EndContext();
|
||||
BeginContext(1235, 225, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea18295", async() => {
|
||||
BeginContext(1285, 26, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(1311, 23, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea18726", async() => {
|
||||
BeginContext(1319, 6, true);
|
||||
WriteLiteral("Normal");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||
}
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1334, 26, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(1360, 22, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea20087", async() => {
|
||||
BeginContext(1368, 5, true);
|
||||
WriteLiteral("Baixa");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||
}
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1382, 26, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(1408, 21, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea21447", async() => {
|
||||
BeginContext(1416, 4, true);
|
||||
WriteLiteral("Alta");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||
}
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1429, 22, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper);
|
||||
#line 34 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml"
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Prioridade);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||
}
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1460, 88, true);
|
||||
WriteLiteral("\r\n </div>\r\n <div class=\"text-right\">\r\n ");
|
||||
EndContext();
|
||||
BeginContext(1548, 110, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea24332", async() => {
|
||||
BeginContext(1646, 8, true);
|
||||
WriteLiteral("Cancelar");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_2.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_3.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_4.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
|
||||
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
|
||||
{
|
||||
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||
}
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_5.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||
}
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1658, 124, true);
|
||||
WriteLiteral("\r\n <button type=\"submit\" class=\"btn btn-primary\">Confirmar</button>\r\n </div>\r\n ");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Method = (string)__tagHelperAttribute_6.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||
}
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1789, 40, true);
|
||||
WriteLiteral("\r\n </div>\r\n </div>\r\n</section>");
|
||||
EndContext();
|
||||
}
|
||||
#pragma warning restore 1998
|
||||
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||
public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; }
|
||||
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||
public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; }
|
||||
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||
public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; }
|
||||
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||
public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; }
|
||||
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||
public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<GerenciaProjetos.Models.Bug> Html { get; private set; }
|
||||
}
|
||||
}
|
||||
#pragma warning restore 1591
|
@ -0,0 +1,304 @@
|
||||
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "e3f1888c36f6ea29ba67cb12fb6eb675cf7ecedc"
|
||||
// <auto-generated/>
|
||||
#pragma warning disable 1591
|
||||
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Bugs_Index), @"mvc.1.0.view", @"/Views/Bugs/Index.cshtml")]
|
||||
[assembly:global::Microsoft.AspNetCore.Mvc.Razor.Compilation.RazorViewAttribute(@"/Views/Bugs/Index.cshtml", typeof(AspNetCore.Views_Bugs_Index))]
|
||||
namespace AspNetCore
|
||||
{
|
||||
#line hidden
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||
using Microsoft.AspNetCore.Mvc.ViewFeatures;
|
||||
#line 1 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml"
|
||||
using GerenciaProjetos;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml"
|
||||
using GerenciaProjetos.Models;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"e3f1888c36f6ea29ba67cb12fb6eb675cf7ecedc", @"/Views/Bugs/Index.cshtml")]
|
||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
|
||||
public class Views_Bugs_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
|
||||
{
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-area", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Bugs", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_2 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "New", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Edit", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_4 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Del", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
#line hidden
|
||||
#pragma warning disable 0169
|
||||
private string __tagHelperStringValueBuffer;
|
||||
#pragma warning restore 0169
|
||||
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext __tagHelperExecutionContext;
|
||||
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner __tagHelperRunner = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner();
|
||||
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __backed__tagHelperScopeManager = null;
|
||||
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __tagHelperScopeManager
|
||||
{
|
||||
get
|
||||
{
|
||||
if (__backed__tagHelperScopeManager == null)
|
||||
{
|
||||
__backed__tagHelperScopeManager = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager(StartTagHelperWritingScope, EndTagHelperWritingScope);
|
||||
}
|
||||
return __backed__tagHelperScopeManager;
|
||||
}
|
||||
}
|
||||
private global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper;
|
||||
#pragma warning disable 1998
|
||||
public async override global::System.Threading.Tasks.Task ExecuteAsync()
|
||||
{
|
||||
BeginContext(0, 2, true);
|
||||
WriteLiteral("\r\n");
|
||||
EndContext();
|
||||
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml"
|
||||
|
||||
ViewData["Title"] = "Requisitos";
|
||||
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(95, 6, true);
|
||||
WriteLiteral("\r\n<h3>");
|
||||
EndContext();
|
||||
BeginContext(102, 17, false);
|
||||
#line 7 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml"
|
||||
Write(ViewData["Title"]);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
EndContext();
|
||||
BeginContext(119, 314, true);
|
||||
WriteLiteral(@"</h3>
|
||||
|
||||
<section class=""py-3"">
|
||||
<div class=""card"">
|
||||
<div class=""card-header"">
|
||||
<div class=""row"">
|
||||
<div class=""col-6"">
|
||||
1
|
||||
</div>
|
||||
<div class=""col-6"">
|
||||
<div class=""text-right"">
|
||||
");
|
||||
EndContext();
|
||||
BeginContext(433, 148, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "e3f1888c36f6ea29ba67cb12fb6eb675cf7ecedc5683", async() => {
|
||||
BeginContext(487, 90, true);
|
||||
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_2.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||
}
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(581, 536, true);
|
||||
WriteLiteral(@"
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<table class=""table table-borderless table-hover"">
|
||||
<thead class=""border-bottom"">
|
||||
<tr>
|
||||
<th scope=""col"">#</th>
|
||||
<th scope=""col"">Criador</th>
|
||||
<th scope=""col"">Data de Cadastro</th>
|
||||
<th scope=""col"">Prioridade</th>
|
||||
<th scope=""col"">Opções</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
");
|
||||
EndContext();
|
||||
#line 36 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml"
|
||||
foreach (Bug b in ViewBag.Bugs)
|
||||
{
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(1186, 54, true);
|
||||
WriteLiteral(" <tr>\r\n <td>");
|
||||
EndContext();
|
||||
BeginContext(1241, 17, false);
|
||||
#line 39 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml"
|
||||
Write(b.DesenvolvedorId);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
EndContext();
|
||||
BeginContext(1258, 1, true);
|
||||
WriteLiteral("-");
|
||||
EndContext();
|
||||
BeginContext(1260, 13, false);
|
||||
#line 39 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml"
|
||||
Write(b.RequisitoId);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
EndContext();
|
||||
BeginContext(1273, 35, true);
|
||||
WriteLiteral("</td>\r\n <td>");
|
||||
EndContext();
|
||||
BeginContext(1309, 9, false);
|
||||
#line 40 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml"
|
||||
Write(b.Criador);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
EndContext();
|
||||
BeginContext(1318, 35, true);
|
||||
WriteLiteral("</td>\r\n <td>");
|
||||
EndContext();
|
||||
BeginContext(1354, 14, false);
|
||||
#line 41 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml"
|
||||
Write(b.DataCadastro);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
EndContext();
|
||||
BeginContext(1368, 35, true);
|
||||
WriteLiteral("</td>\r\n <td>");
|
||||
EndContext();
|
||||
BeginContext(1404, 12, false);
|
||||
#line 42 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml"
|
||||
Write(b.Prioridade);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
EndContext();
|
||||
BeginContext(1416, 65, true);
|
||||
WriteLiteral("</td>\r\n <td>\r\n ");
|
||||
EndContext();
|
||||
BeginContext(1481, 200, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "e3f1888c36f6ea29ba67cb12fb6eb675cf7ecedc10400", async() => {
|
||||
BeginContext(1586, 91, true);
|
||||
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_3.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3);
|
||||
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
|
||||
{
|
||||
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||
}
|
||||
BeginWriteTagHelperAttribute();
|
||||
#line 44 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml"
|
||||
WriteLiteral(b.DesenvolvedorId);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
WriteLiteral(", ");
|
||||
#line 44 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml"
|
||||
WriteLiteral(b.RequisitoId);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
__tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||
}
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1681, 30, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(1711, 200, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "e3f1888c36f6ea29ba67cb12fb6eb675cf7ecedc13620", async() => {
|
||||
BeginContext(1815, 92, true);
|
||||
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_4.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
|
||||
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
|
||||
{
|
||||
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||
}
|
||||
BeginWriteTagHelperAttribute();
|
||||
#line 47 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml"
|
||||
WriteLiteral(b.DesenvolvedorId);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
WriteLiteral(", ");
|
||||
#line 47 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml"
|
||||
WriteLiteral(b.RequisitoId);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
__tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||
}
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1911, 60, true);
|
||||
WriteLiteral("\r\n </td>\r\n </tr>\r\n");
|
||||
EndContext();
|
||||
#line 52 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml"
|
||||
}
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(1990, 62, true);
|
||||
WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>");
|
||||
EndContext();
|
||||
}
|
||||
#pragma warning restore 1998
|
||||
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||
public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; }
|
||||
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||
public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; }
|
||||
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||
public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; }
|
||||
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||
public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; }
|
||||
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||
public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<dynamic> Html { get; private set; }
|
||||
}
|
||||
}
|
||||
#pragma warning restore 1591
|
@ -1,4 +1,4 @@
|
||||
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "debe893e3b231c494c22ff3c4b7fc3a213bac2a2"
|
||||
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "f98e248c28a287bdb7ce8373fdc5e2544889b374"
|
||||
// <auto-generated/>
|
||||
#pragma warning disable 1591
|
||||
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Home_Index), @"mvc.1.0.view", @"/Views/Home/Index.cshtml")]
|
||||
@ -23,7 +23,7 @@ using GerenciaProjetos.Models;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"debe893e3b231c494c22ff3c4b7fc3a213bac2a2", @"/Views/Home/Index.cshtml")]
|
||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"f98e248c28a287bdb7ce8373fdc5e2544889b374", @"/Views/Home/Index.cshtml")]
|
||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
|
||||
public class Views_Home_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
|
||||
{
|
||||
@ -36,9 +36,7 @@ using GerenciaProjetos.Models;
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_6 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Del", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_7 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Projetos", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_8 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Requisitos", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_9 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Home", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_10 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_11 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-route-id", "u.Id", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_9 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Bugs", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
#line hidden
|
||||
#pragma warning disable 0169
|
||||
private string __tagHelperStringValueBuffer;
|
||||
@ -81,7 +79,7 @@ Write(ViewData["Title"]);
|
||||
WriteLiteral("</h3>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-header\">\r\n <div class=\"row\">\r\n <div class=\"col-6\">\r\n ");
|
||||
EndContext();
|
||||
BeginContext(249, 115, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a27595", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b3746997", async() => {
|
||||
BeginContext(345, 15, true);
|
||||
WriteLiteral("Desenvolvedores");
|
||||
EndContext();
|
||||
@ -108,7 +106,7 @@ Write(ViewData["Title"]);
|
||||
WriteLiteral("\r\n </div>\r\n <div class=\"col-6\">\r\n <div class=\"text-right\">\r\n ");
|
||||
EndContext();
|
||||
BeginContext(497, 159, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a29607", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b3749009", async() => {
|
||||
BeginContext(562, 90, true);
|
||||
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
|
||||
EndContext();
|
||||
@ -216,7 +214,7 @@ Write(ViewData["Title"]);
|
||||
WriteLiteral(" </td>\r\n <td>\r\n ");
|
||||
EndContext();
|
||||
BeginContext(1843, 182, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a214623", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37414025", async() => {
|
||||
BeginContext(1930, 91, true);
|
||||
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
|
||||
EndContext();
|
||||
@ -255,7 +253,7 @@ Write(ViewData["Title"]);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(2055, 182, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a217542", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37416944", async() => {
|
||||
BeginContext(2141, 92, true);
|
||||
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
|
||||
EndContext();
|
||||
@ -302,7 +300,7 @@ Write(ViewData["Title"]);
|
||||
WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-header\">\r\n <div class=\"row\">\r\n <div class=\"col-6\">\r\n ");
|
||||
EndContext();
|
||||
BeginContext(2553, 101, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a221014", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37420416", async() => {
|
||||
BeginContext(2642, 8, true);
|
||||
WriteLiteral("Projetos");
|
||||
EndContext();
|
||||
@ -329,7 +327,7 @@ Write(ViewData["Title"]);
|
||||
WriteLiteral("\r\n </div>\r\n <div class=\"col-6\">\r\n <div class=\"text-right\">\r\n ");
|
||||
EndContext();
|
||||
BeginContext(2787, 152, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a223022", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37422424", async() => {
|
||||
BeginContext(2845, 90, true);
|
||||
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
|
||||
EndContext();
|
||||
@ -420,7 +418,7 @@ Write(ViewData["Title"]);
|
||||
WriteLiteral("</td>\r\n <td>\r\n ");
|
||||
EndContext();
|
||||
BeginContext(3813, 175, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a227362", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37426764", async() => {
|
||||
BeginContext(3893, 91, true);
|
||||
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
|
||||
EndContext();
|
||||
@ -459,7 +457,7 @@ Write(ViewData["Title"]);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(4018, 175, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a230275", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37429677", async() => {
|
||||
BeginContext(4097, 92, true);
|
||||
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
|
||||
EndContext();
|
||||
@ -506,7 +504,7 @@ Write(ViewData["Title"]);
|
||||
WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-header\">\r\n <div class=\"row\">\r\n <div class=\"col-6\">\r\n ");
|
||||
EndContext();
|
||||
BeginContext(4509, 105, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a233742", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37433144", async() => {
|
||||
BeginContext(4600, 10, true);
|
||||
WriteLiteral("Requisitos");
|
||||
EndContext();
|
||||
@ -533,7 +531,7 @@ Write(ViewData["Title"]);
|
||||
WriteLiteral("\r\n </div>\r\n <div class=\"col-6\">\r\n <div class=\"text-right\">\r\n ");
|
||||
EndContext();
|
||||
BeginContext(4747, 154, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a235753", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37435155", async() => {
|
||||
BeginContext(4807, 90, true);
|
||||
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
|
||||
EndContext();
|
||||
@ -635,7 +633,7 @@ Write(ViewData["Title"]);
|
||||
WriteLiteral("</td>\r\n <td>\r\n ");
|
||||
EndContext();
|
||||
BeginContext(5898, 177, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a240562", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37439964", async() => {
|
||||
BeginContext(5980, 91, true);
|
||||
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
|
||||
EndContext();
|
||||
@ -674,7 +672,7 @@ Write(ViewData["Title"]);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(6105, 177, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a243477", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37442879", async() => {
|
||||
BeginContext(6186, 92, true);
|
||||
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
|
||||
EndContext();
|
||||
@ -717,32 +715,19 @@ Write(ViewData["Title"]);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(6361, 374, true);
|
||||
WriteLiteral(@" </tbody>
|
||||
</table>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class=""py-3"">
|
||||
<div class=""card"">
|
||||
<div class=""card-header"">
|
||||
<div class=""row"">
|
||||
<div class=""col-6"">
|
||||
Bugs
|
||||
</div>
|
||||
<div class=""col-6"">
|
||||
<div class=""text-right"">
|
||||
");
|
||||
BeginContext(6361, 237, true);
|
||||
WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-header\">\r\n <div class=\"row\">\r\n <div class=\"col-6\">\r\n ");
|
||||
EndContext();
|
||||
BeginContext(6735, 150, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a247068", async() => {
|
||||
BeginContext(6791, 90, true);
|
||||
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
|
||||
BeginContext(6598, 93, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37446347", async() => {
|
||||
BeginContext(6683, 4, true);
|
||||
WriteLiteral("Bugs");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_9.Value;
|
||||
@ -757,7 +742,33 @@ Write(ViewData["Title"]);
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(6885, 846, true);
|
||||
BeginContext(6691, 133, true);
|
||||
WriteLiteral("\r\n </div>\r\n <div class=\"col-6\">\r\n <div class=\"text-right\">\r\n ");
|
||||
EndContext();
|
||||
BeginContext(6824, 148, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37448351", async() => {
|
||||
BeginContext(6878, 90, true);
|
||||
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_9.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_4.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||
}
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(6972, 536, true);
|
||||
WriteLiteral(@"
|
||||
</div>
|
||||
</div>
|
||||
@ -767,27 +778,78 @@ Write(ViewData["Title"]);
|
||||
<thead class=""border-bottom"">
|
||||
<tr>
|
||||
<th scope=""col"">#</th>
|
||||
<th scope=""col"">Prioridade</th>
|
||||
<th scope=""col"">Criador</th>
|
||||
<th scope=""col"">Data de Cadastro</th>
|
||||
<th scope=""col"">Data de Entrega</th>
|
||||
<th scope=""col"">Resolvido</th>
|
||||
<th scope=""col"">Prioridade</th>
|
||||
<th scope=""col"">Opções</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>1</td>
|
||||
<td>Guilherme</td>
|
||||
<td>Abril</td>
|
||||
<td>Kewin</td>
|
||||
<td>Não</td>
|
||||
<td>
|
||||
");
|
||||
");
|
||||
EndContext();
|
||||
BeginContext(7731, 158, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a249800", async() => {
|
||||
BeginContext(7802, 83, true);
|
||||
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
|
||||
#line 192 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||
foreach (Bug b in ViewBag.Bugs)
|
||||
{
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(7577, 54, true);
|
||||
WriteLiteral(" <tr>\r\n <td>");
|
||||
EndContext();
|
||||
BeginContext(7632, 17, false);
|
||||
#line 195 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||
Write(b.DesenvolvedorId);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
EndContext();
|
||||
BeginContext(7649, 1, true);
|
||||
WriteLiteral("-");
|
||||
EndContext();
|
||||
BeginContext(7651, 13, false);
|
||||
#line 195 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||
Write(b.RequisitoId);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
EndContext();
|
||||
BeginContext(7664, 35, true);
|
||||
WriteLiteral("</td>\r\n <td>");
|
||||
EndContext();
|
||||
BeginContext(7700, 9, false);
|
||||
#line 196 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||
Write(b.Criador);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
EndContext();
|
||||
BeginContext(7709, 35, true);
|
||||
WriteLiteral("</td>\r\n <td>");
|
||||
EndContext();
|
||||
BeginContext(7745, 14, false);
|
||||
#line 197 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||
Write(b.DataCadastro);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
EndContext();
|
||||
BeginContext(7759, 35, true);
|
||||
WriteLiteral("</td>\r\n <td>");
|
||||
EndContext();
|
||||
BeginContext(7795, 12, false);
|
||||
#line 198 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||
Write(b.Prioridade);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
EndContext();
|
||||
BeginContext(7807, 65, true);
|
||||
WriteLiteral("</td>\r\n <td>\r\n ");
|
||||
EndContext();
|
||||
BeginContext(7872, 200, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37453077", async() => {
|
||||
BeginContext(7977, 91, true);
|
||||
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
@ -797,14 +859,27 @@ Write(ViewData["Title"]);
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_9.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_10.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_10);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_5.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5);
|
||||
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
|
||||
{
|
||||
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||
}
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_11.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_11);
|
||||
BeginWriteTagHelperAttribute();
|
||||
#line 200 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||
WriteLiteral(b.DesenvolvedorId);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
WriteLiteral(", ");
|
||||
#line 200 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||
WriteLiteral(b.RequisitoId);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
__tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
@ -813,13 +888,13 @@ Write(ViewData["Title"]);
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(7889, 26, true);
|
||||
WriteLiteral("\r\n ");
|
||||
BeginContext(8072, 30, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(7915, 159, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a252203", async() => {
|
||||
BeginContext(7986, 84, true);
|
||||
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
|
||||
BeginContext(8102, 200, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37456299", async() => {
|
||||
BeginContext(8206, 92, true);
|
||||
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
@ -829,14 +904,27 @@ Write(ViewData["Title"]);
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_9.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_10.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_10);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
|
||||
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
|
||||
{
|
||||
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||
}
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_11.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_11);
|
||||
BeginWriteTagHelperAttribute();
|
||||
#line 203 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||
WriteLiteral(b.DesenvolvedorId);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
WriteLiteral(", ");
|
||||
#line 203 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||
WriteLiteral(b.RequisitoId);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
__tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
@ -845,8 +933,16 @@ Write(ViewData["Title"]);
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(8074, 114, true);
|
||||
WriteLiteral("\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n</section>");
|
||||
BeginContext(8302, 60, true);
|
||||
WriteLiteral("\r\n </td>\r\n </tr>\r\n");
|
||||
EndContext();
|
||||
#line 208 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||
}
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(8381, 62, true);
|
||||
WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>");
|
||||
EndContext();
|
||||
}
|
||||
#pragma warning restore 1998
|
||||
|
Reference in New Issue
Block a user