This commit is contained in:
GuiNerd
2019-09-21 18:21:54 -03:00
parent d6ee0821c8
commit b46ddd2f0d
29 changed files with 1294 additions and 196 deletions

Binary file not shown.

View File

@ -5,13 +5,26 @@ using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using GerenciaProjetos.Models;
using GerenciaContext = GerenciaProjetos.Data.GerenciaContext;
namespace GerenciaProjetos.Controllers
{
public class HomeController : Controller
{
private GerenciaContext ctx;
public HomeController(GerenciaContext ctx)
{
this.ctx = ctx;
Desenvolvedor dev = ctx.Desenvolvedores.Find(1);
}
public IActionResult Index()
{
ViewBag.Desenvolvedores = ctx.Desenvolvedores;
return View();
}
@ -20,6 +33,73 @@ namespace GerenciaProjetos.Controllers
return View();
}
/* DESENVOLVEDOR */
public IActionResult AddDev()
{
return View();
}
[HttpPost]
public IActionResult AddDev(Desenvolvedor dev)
{
if (ModelState.IsValid)
{
ctx.Desenvolvedores.Add(dev);
ctx.SaveChanges();
return RedirectToAction("Index", "Home");
}
else
{
return View("AddDev", dev);
}
}
public IActionResult EditDev(int id)
{
Desenvolvedor dev = ctx.Desenvolvedores.Find(id);
if (dev != null)
{
return View("AddDev", dev);
}
else
{
return RedirectToAction("Index", "Home");
}
}
[HttpPost]
[ValidateAntiForgeryToken]
public IActionResult EditDev(Desenvolvedor dev)
{
if (ModelState.IsValid)
{
ctx.Desenvolvedores.Update(dev);
ctx.SaveChanges();
return RedirectToAction("Index", "Home");
}
else
{
return View("AddDev", dev);
}
}
public IActionResult DelDev(int id)
{
Desenvolvedor dev = ctx.Desenvolvedores.Find(id);
if (dev != null)
{
ctx.Desenvolvedores.Remove(dev);
ctx.SaveChanges();
}
return RedirectToAction("Index", "Home");
}
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
{

View File

@ -7,7 +7,7 @@ using GerenciaProjetos.Models;
namespace GerenciaProjetos.Data
{
public class AppContext : DbContext
public class GerenciaContext : DbContext
{
public DbSet<Bug> Bugs { get; set; }
public DbSet<Desenvolvedor> Desenvolvedores { get; set; }
@ -17,7 +17,7 @@ namespace GerenciaProjetos.Data
public DbSet<DesenvolvedorProjeto> DesenvolvedorProjeto { get; set; }
public DbSet<DesenvolvedorRequisito> DesenvolvedorRequisito { get; set; }
public AppContext(DbContextOptions o) : base(o)
public GerenciaContext(DbContextOptions o) : base(o)
{
}
@ -25,11 +25,11 @@ namespace GerenciaProjetos.Data
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Bug>()
.HasKey(c => new { c.DesenvolvedorId, c.RequisitoId });
.HasKey(b => new { b.DesenvolvedorId, b.RequisitoId });
modelBuilder.Entity<DesenvolvedorProjeto>()
.HasKey(c => new { c.DesenvolvedorId, c.ProjetoId });
.HasKey(p => new { p.DesenvolvedorId, p.ProjetoId });
modelBuilder.Entity<DesenvolvedorRequisito>()
.HasKey(c => new { c.DesenvolvedorId, c.RequisitoId });
.HasKey(r => new { r.DesenvolvedorId, r.RequisitoId });
}
}
}

View File

@ -0,0 +1,181 @@
// <auto-generated />
using System;
using GerenciaProjetos.Data;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
namespace GerenciaProjetos.Migrations
{
[DbContext(typeof(GerenciaContext))]
[Migration("20190921210546_1")]
partial class _1
{
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "2.2.6-servicing-10079")
.HasAnnotation("Relational:MaxIdentifierLength", 64);
modelBuilder.Entity("GerenciaProjetos.Models.Bug", b =>
{
b.Property<int>("DesenvolvedorId");
b.Property<int>("RequisitoId");
b.HasKey("DesenvolvedorId", "RequisitoId");
b.HasIndex("RequisitoId");
b.ToTable("Bugs");
});
modelBuilder.Entity("GerenciaProjetos.Models.Desenvolvedor", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd();
b.Property<bool>("EAdmin");
b.Property<string>("Email")
.IsRequired()
.HasMaxLength(100);
b.Property<string>("Nome")
.IsRequired()
.HasMaxLength(100);
b.Property<string>("Senha")
.IsRequired()
.HasMaxLength(45);
b.HasKey("Id");
b.ToTable("Desenvolvedores");
});
modelBuilder.Entity("GerenciaProjetos.Models.DesenvolvedorProjeto", b =>
{
b.Property<int>("DesenvolvedorId");
b.Property<int>("ProjetoId");
b.HasKey("DesenvolvedorId", "ProjetoId");
b.HasIndex("ProjetoId");
b.ToTable("DesenvolvedorProjeto");
});
modelBuilder.Entity("GerenciaProjetos.Models.DesenvolvedorRequisito", b =>
{
b.Property<int>("DesenvolvedorId");
b.Property<int>("RequisitoId");
b.HasKey("DesenvolvedorId", "RequisitoId");
b.HasIndex("RequisitoId");
b.ToTable("DesenvolvedorRequisito");
});
modelBuilder.Entity("GerenciaProjetos.Models.Projeto", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd();
b.Property<DateTime>("DataEntrega");
b.Property<string>("Nome")
.IsRequired()
.HasMaxLength(100);
b.Property<string>("Solicitante")
.IsRequired()
.HasMaxLength(45);
b.HasKey("Id");
b.ToTable("Projetos");
});
modelBuilder.Entity("GerenciaProjetos.Models.Requisito", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd();
b.Property<DateTime>("DataCadastro");
b.Property<DateTime>("DataEntrega");
b.Property<string>("Descricao")
.IsRequired()
.HasMaxLength(100);
b.Property<bool>("EFuncional");
b.Property<string>("Observacoes")
.HasMaxLength(100);
b.Property<int>("ProjetoId");
b.HasKey("Id");
b.HasIndex("ProjetoId");
b.ToTable("Requisitos");
});
modelBuilder.Entity("GerenciaProjetos.Models.Bug", b =>
{
b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Desenvolvedor")
.WithMany()
.HasForeignKey("DesenvolvedorId")
.OnDelete(DeleteBehavior.Cascade);
b.HasOne("GerenciaProjetos.Models.Requisito", "Requisito")
.WithMany()
.HasForeignKey("RequisitoId")
.OnDelete(DeleteBehavior.Cascade);
});
modelBuilder.Entity("GerenciaProjetos.Models.DesenvolvedorProjeto", b =>
{
b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Desenvolvedor")
.WithMany()
.HasForeignKey("DesenvolvedorId")
.OnDelete(DeleteBehavior.Cascade);
b.HasOne("GerenciaProjetos.Models.Projeto", "Projeto")
.WithMany()
.HasForeignKey("ProjetoId")
.OnDelete(DeleteBehavior.Cascade);
});
modelBuilder.Entity("GerenciaProjetos.Models.DesenvolvedorRequisito", b =>
{
b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Desenvolvedor")
.WithMany()
.HasForeignKey("DesenvolvedorId")
.OnDelete(DeleteBehavior.Cascade);
b.HasOne("GerenciaProjetos.Models.Requisito", "Requisito")
.WithMany()
.HasForeignKey("RequisitoId")
.OnDelete(DeleteBehavior.Cascade);
});
modelBuilder.Entity("GerenciaProjetos.Models.Requisito", b =>
{
b.HasOne("GerenciaProjetos.Models.Projeto", "Projeto")
.WithMany("Requisitos")
.HasForeignKey("ProjetoId")
.OnDelete(DeleteBehavior.Cascade);
});
#pragma warning restore 612, 618
}
}
}

View File

@ -44,18 +44,17 @@ namespace GerenciaProjetos.Migrations
columns: table => new
{
DesenvolvedorId = table.Column<int>(nullable: false),
ProjetoId = table.Column<int>(nullable: false),
DesenvolvedorId1 = table.Column<int>(nullable: true)
ProjetoId = table.Column<int>(nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_DesenvolvedorProjeto", x => new { x.DesenvolvedorId, x.ProjetoId });
table.ForeignKey(
name: "FK_DesenvolvedorProjeto_Desenvolvedores_DesenvolvedorId1",
column: x => x.DesenvolvedorId1,
name: "FK_DesenvolvedorProjeto_Desenvolvedores_DesenvolvedorId",
column: x => x.DesenvolvedorId,
principalTable: "Desenvolvedores",
principalColumn: "Id",
onDelete: ReferentialAction.Restrict);
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "FK_DesenvolvedorProjeto_Projetos_ProjetoId",
column: x => x.ProjetoId,
@ -93,28 +92,17 @@ namespace GerenciaProjetos.Migrations
columns: table => new
{
DesenvolvedorId = table.Column<int>(nullable: false),
RequisitoId = table.Column<int>(nullable: false),
DesenvolvedorId1 = table.Column<int>(nullable: true),
Prioridade = table.Column<string>(nullable: true),
DataCadastro = table.Column<DateTime>(nullable: false),
CriadorId = table.Column<int>(nullable: false),
FoiResolvido = table.Column<bool>(nullable: false)
RequisitoId = table.Column<int>(nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_Bugs", x => new { x.DesenvolvedorId, x.RequisitoId });
table.ForeignKey(
name: "FK_Bugs_Desenvolvedores_CriadorId",
column: x => x.CriadorId,
name: "FK_Bugs_Desenvolvedores_DesenvolvedorId",
column: x => x.DesenvolvedorId,
principalTable: "Desenvolvedores",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "FK_Bugs_Desenvolvedores_DesenvolvedorId1",
column: x => x.DesenvolvedorId1,
principalTable: "Desenvolvedores",
principalColumn: "Id",
onDelete: ReferentialAction.Restrict);
table.ForeignKey(
name: "FK_Bugs_Requisitos_RequisitoId",
column: x => x.RequisitoId,
@ -128,19 +116,17 @@ namespace GerenciaProjetos.Migrations
columns: table => new
{
DesenvolvedorId = table.Column<int>(nullable: false),
RequisitoId = table.Column<int>(nullable: false),
DesenvolvedorId1 = table.Column<int>(nullable: true),
TempoGasto = table.Column<TimeSpan>(nullable: false)
RequisitoId = table.Column<int>(nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_DesenvolvedorRequisito", x => new { x.DesenvolvedorId, x.RequisitoId });
table.ForeignKey(
name: "FK_DesenvolvedorRequisito_Desenvolvedores_DesenvolvedorId1",
column: x => x.DesenvolvedorId1,
name: "FK_DesenvolvedorRequisito_Desenvolvedores_DesenvolvedorId",
column: x => x.DesenvolvedorId,
principalTable: "Desenvolvedores",
principalColumn: "Id",
onDelete: ReferentialAction.Restrict);
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "FK_DesenvolvedorRequisito_Requisitos_RequisitoId",
column: x => x.RequisitoId,
@ -149,36 +135,16 @@ namespace GerenciaProjetos.Migrations
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateIndex(
name: "IX_Bugs_CriadorId",
table: "Bugs",
column: "CriadorId");
migrationBuilder.CreateIndex(
name: "IX_Bugs_DesenvolvedorId1",
table: "Bugs",
column: "DesenvolvedorId1");
migrationBuilder.CreateIndex(
name: "IX_Bugs_RequisitoId",
table: "Bugs",
column: "RequisitoId");
migrationBuilder.CreateIndex(
name: "IX_DesenvolvedorProjeto_DesenvolvedorId1",
table: "DesenvolvedorProjeto",
column: "DesenvolvedorId1");
migrationBuilder.CreateIndex(
name: "IX_DesenvolvedorProjeto_ProjetoId",
table: "DesenvolvedorProjeto",
column: "ProjetoId");
migrationBuilder.CreateIndex(
name: "IX_DesenvolvedorRequisito_DesenvolvedorId1",
table: "DesenvolvedorRequisito",
column: "DesenvolvedorId1");
migrationBuilder.CreateIndex(
name: "IX_DesenvolvedorRequisito_RequisitoId",
table: "DesenvolvedorRequisito",

View File

@ -5,13 +5,12 @@ using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using AppContext = GerenciaProjetos.Data.AppContext;
namespace GerenciaProjetos.Migrations
{
[DbContext(typeof(AppContext))]
[Migration("20190921193724_1")]
partial class _1
[DbContext(typeof(GerenciaContext))]
[Migration("20190921210818_2")]
partial class _2
{
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
@ -30,8 +29,6 @@ namespace GerenciaProjetos.Migrations
b.Property<DateTime>("DataCadastro");
b.Property<int?>("DesenvolvedorId1");
b.Property<bool>("FoiResolvido");
b.Property<string>("Prioridade");
@ -40,8 +37,6 @@ namespace GerenciaProjetos.Migrations
b.HasIndex("CriadorId");
b.HasIndex("DesenvolvedorId1");
b.HasIndex("RequisitoId");
b.ToTable("Bugs");
@ -77,12 +72,8 @@ namespace GerenciaProjetos.Migrations
b.Property<int>("ProjetoId");
b.Property<int?>("DesenvolvedorId1");
b.HasKey("DesenvolvedorId", "ProjetoId");
b.HasIndex("DesenvolvedorId1");
b.HasIndex("ProjetoId");
b.ToTable("DesenvolvedorProjeto");
@ -94,14 +85,10 @@ namespace GerenciaProjetos.Migrations
b.Property<int>("RequisitoId");
b.Property<int?>("DesenvolvedorId1");
b.Property<TimeSpan>("TempoGasto");
b.HasKey("DesenvolvedorId", "RequisitoId");
b.HasIndex("DesenvolvedorId1");
b.HasIndex("RequisitoId");
b.ToTable("DesenvolvedorRequisito");
@ -163,7 +150,8 @@ namespace GerenciaProjetos.Migrations
b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Desenvolvedor")
.WithMany()
.HasForeignKey("DesenvolvedorId1");
.HasForeignKey("DesenvolvedorId")
.OnDelete(DeleteBehavior.Cascade);
b.HasOne("GerenciaProjetos.Models.Requisito", "Requisito")
.WithMany()
@ -175,7 +163,8 @@ namespace GerenciaProjetos.Migrations
{
b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Desenvolvedor")
.WithMany()
.HasForeignKey("DesenvolvedorId1");
.HasForeignKey("DesenvolvedorId")
.OnDelete(DeleteBehavior.Cascade);
b.HasOne("GerenciaProjetos.Models.Projeto", "Projeto")
.WithMany()
@ -187,7 +176,8 @@ namespace GerenciaProjetos.Migrations
{
b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Desenvolvedor")
.WithMany()
.HasForeignKey("DesenvolvedorId1");
.HasForeignKey("DesenvolvedorId")
.OnDelete(DeleteBehavior.Cascade);
b.HasOne("GerenciaProjetos.Models.Requisito", "Requisito")
.WithMany()

View File

@ -0,0 +1,84 @@
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");
}
}
}

View File

@ -4,12 +4,11 @@ using GerenciaProjetos.Data;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using AppContext = GerenciaProjetos.Data.AppContext;
namespace GerenciaProjetos.Migrations
{
[DbContext(typeof(AppContext))]
partial class AppContextModelSnapshot : ModelSnapshot
[DbContext(typeof(GerenciaContext))]
partial class GerenciaContextModelSnapshot : ModelSnapshot
{
protected override void BuildModel(ModelBuilder modelBuilder)
{
@ -28,8 +27,6 @@ namespace GerenciaProjetos.Migrations
b.Property<DateTime>("DataCadastro");
b.Property<int?>("DesenvolvedorId1");
b.Property<bool>("FoiResolvido");
b.Property<string>("Prioridade");
@ -38,8 +35,6 @@ namespace GerenciaProjetos.Migrations
b.HasIndex("CriadorId");
b.HasIndex("DesenvolvedorId1");
b.HasIndex("RequisitoId");
b.ToTable("Bugs");
@ -75,12 +70,8 @@ namespace GerenciaProjetos.Migrations
b.Property<int>("ProjetoId");
b.Property<int?>("DesenvolvedorId1");
b.HasKey("DesenvolvedorId", "ProjetoId");
b.HasIndex("DesenvolvedorId1");
b.HasIndex("ProjetoId");
b.ToTable("DesenvolvedorProjeto");
@ -92,14 +83,10 @@ namespace GerenciaProjetos.Migrations
b.Property<int>("RequisitoId");
b.Property<int?>("DesenvolvedorId1");
b.Property<TimeSpan>("TempoGasto");
b.HasKey("DesenvolvedorId", "RequisitoId");
b.HasIndex("DesenvolvedorId1");
b.HasIndex("RequisitoId");
b.ToTable("DesenvolvedorRequisito");
@ -161,7 +148,8 @@ namespace GerenciaProjetos.Migrations
b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Desenvolvedor")
.WithMany()
.HasForeignKey("DesenvolvedorId1");
.HasForeignKey("DesenvolvedorId")
.OnDelete(DeleteBehavior.Cascade);
b.HasOne("GerenciaProjetos.Models.Requisito", "Requisito")
.WithMany()
@ -173,7 +161,8 @@ namespace GerenciaProjetos.Migrations
{
b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Desenvolvedor")
.WithMany()
.HasForeignKey("DesenvolvedorId1");
.HasForeignKey("DesenvolvedorId")
.OnDelete(DeleteBehavior.Cascade);
b.HasOne("GerenciaProjetos.Models.Projeto", "Projeto")
.WithMany()
@ -185,7 +174,8 @@ namespace GerenciaProjetos.Migrations
{
b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Desenvolvedor")
.WithMany()
.HasForeignKey("DesenvolvedorId1");
.HasForeignKey("DesenvolvedorId")
.OnDelete(DeleteBehavior.Cascade);
b.HasOne("GerenciaProjetos.Models.Requisito", "Requisito")
.WithMany()

View File

@ -9,18 +9,16 @@ namespace GerenciaProjetos.Models
{
public class Bug
{
[Key, Column(Order = 1)]
public int DesenvolvedorId { get; set; }
public Desenvolvedor Desenvolvedor { get; set; }
[Key, Column(Order = 2)]
public int RequisitoId { get; set; }
public Requisito Requisito { get; set; }
public string Prioridade { get; set; }
public DateTime DataCadastro { get; set; }
public int CriadorId { get; set; }
public Desenvolvedor Criador { get; set; }

View File

@ -9,11 +9,9 @@ namespace GerenciaProjetos.Models
{
public class DesenvolvedorProjeto
{
[Key, Column(Order = 1)]
public int DesenvolvedorId { get; set; }
public Desenvolvedor Desenvolvedor { get; set; }
[Key, Column(Order = 2)]
public int ProjetoId { get; set; }
public Projeto Projeto { get; set; }
}

View File

@ -9,14 +9,12 @@ namespace GerenciaProjetos.Models
{
public class DesenvolvedorRequisito
{
[Key, Column(Order = 1)]
public int DesenvolvedorId { get; set; }
public Desenvolvedor Desenvolvedor { get; set; }
[Key, Column(Order = 2)]
public int RequisitoId { get; set; }
public Requisito Requisito { get; set; }
[DataType(DataType.Time)]
public TimeSpan TempoGasto { get; set; }
}

View File

@ -9,7 +9,7 @@ using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using AppContext = GerenciaProjetos.Data.AppContext;
using GerenciaContext = GerenciaProjetos.Data.GerenciaContext;
namespace GerenciaProjetos
{
@ -34,7 +34,7 @@ namespace GerenciaProjetos
services.AddRouting(options => options.LowercaseUrls = true);
services.AddDbContext<AppContext>(options => options.UseMySql(Configuration.GetConnectionString("DefaultConnection")));
services.AddDbContext<GerenciaContext>(options => options.UseMySql(Configuration.GetConnectionString("DefaultConnection")));
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
}

View File

@ -7,8 +7,198 @@
<section class="py-3">
<div class="card">
<div class="card-body">
a
<div class="card-header">
<div class="row">
<div class="col-6">
Desenvolvedores
</div>
<div class="col-6">
<div class="text-right">
<a asp-area="" asp-controller="Home" asp-action="AddDev">
<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">Nome</th>
<th scope="col">Email</th>
<th scope="col">Admin</th>
<th scope="col">Opções</th>
</tr>
</thead>
<tbody>
@foreach (Desenvolvedor d in ViewBag.Desenvolvedores)
{
<tr>
<td>@d.Id</td>
<td>@d.Nome</td>
<td>@d.Email</td>
<td>
@if (d.EAdmin == true)
{
<span>Sim</span>
}
else
{
<span>Não</span>
}
</td>
<td>
<a asp-area="" asp-controller="Home" asp-action="EditDev" asp-route-id="@d.Id">
<i class="fas fa-edit"></i>
</a>
<a asp-area="" asp-controller="Home" asp-action="DelDev" asp-route-id="@d.Id">
<i class="fas fa-trash"></i>
</a>
</td>
</tr>
}
</tbody>
</table>
</div>
</section>
<section class="py-3">
<div class="card">
<div class="card-header">
<div class="row">
<div class="col-6">
Projetos
</div>
<div class="col-6">
<div class="text-right">
<a asp-area="" asp-controller="Home" asp-action="Index">
<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">Nome</th>
<th scope="col">Data de Entrega</th>
<th scope="col">Solicitante</th>
<th scope="col">Opções</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Guilherme</td>
<td>Abril</td>
<td>Kewin</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>
</tbody>
</table>
</div>
</section>
<section class="py-3">
<div class="card">
<div class="card-header">
<div class="row">
<div class="col-6">
Requisitos
</div>
<div class="col-6">
<div class="text-right">
<a asp-area="" asp-controller="Home" asp-action="Index">
<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">Descrição</th>
<th scope="col">Observações</th>
<th scope="col">Data de Entrega</th>
<th scope="col">Opções</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Guilherme</td>
<td>Abril</td>
<td>Kewin</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>
</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">
<a asp-area="" asp-controller="Home" asp-action="Index">
<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">Prioridade</th>
<th scope="col">Data de Cadastro</th>
<th scope="col">Data de Entrega</th>
<th scope="col">Resolvido</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>
</tbody>
</table>
</div>
</section>

View File

@ -21,11 +21,11 @@
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark box-shadow mb-3">
<nav class="navbar navbar-expand-lg navbar-light bg-light border-bottom box-shadow mb-3">
<div class="container">
<a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index">
<img src="~/img/brand.png" width="26" height="30" class="d-inline-block align-top">
Dashboard
TribuFu
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>

View File

@ -1 +1 @@
541b2409aef64fc2784792f25315e8920db87946
cb54e8c0ad313c3e8bad7f8667e573792fdbb7c8

View File

@ -1,4 +1,4 @@
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1a4765981eeb2ad98bbee7a1b8071edc159459f1"
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "d4f66da37c17571521a9a261565a428d39f22aa5"
// <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,10 +23,37 @@ using GerenciaProjetos.Models;
#line default
#line hidden
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"1a4765981eeb2ad98bbee7a1b8071edc159459f1", @"/Views/Home/Index.cshtml")]
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"d4f66da37c17571521a9a261565a428d39f22aa5", @"/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>
{
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", "Home", 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", "AddDev", 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", "EditDev", 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", "DelDev", 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-action", "Index", 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("asp-action", "", 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-route-id", "u.Id", 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()
{
@ -46,8 +73,600 @@ Write(ViewData["Title"]);
#line default
#line hidden
EndContext();
BeginContext(69, 220, true);
WriteLiteral("</h3>\r\n<p>Manage your account settings, and set up social network integration.</p>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-body\">\r\n a\r\n </div>\r\n </div>\r\n</section>");
BeginContext(69, 405, true);
WriteLiteral(@"</h3>
<p>Manage your account settings, and set up social network integration.</p>
<section class=""py-3"">
<div class=""card"">
<div class=""card-header"">
<div class=""row"">
<div class=""col-6"">
Desenvolvedores
</div>
<div class=""col-6"">
<div class=""text-right"">
");
EndContext();
BeginContext(474, 151, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa56528", async() => {
BeginContext(531, 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(625, 517, 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"">Nome</th>
<th scope=""col"">Email</th>
<th scope=""col"">Admin</th>
<th scope=""col"">Opções</th>
</tr>
</thead>
<tbody>
");
EndContext();
#line 35 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
foreach (Desenvolvedor d in ViewBag.Desenvolvedores)
{
#line default
#line hidden
BeginContext(1232, 54, true);
WriteLiteral(" <tr>\r\n <td>");
EndContext();
BeginContext(1287, 4, false);
#line 38 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
Write(d.Id);
#line default
#line hidden
EndContext();
BeginContext(1291, 35, true);
WriteLiteral("</td>\r\n <td>");
EndContext();
BeginContext(1327, 6, false);
#line 39 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
Write(d.Nome);
#line default
#line hidden
EndContext();
BeginContext(1333, 35, true);
WriteLiteral("</td>\r\n <td>");
EndContext();
BeginContext(1369, 7, false);
#line 40 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
Write(d.Email);
#line default
#line hidden
EndContext();
BeginContext(1376, 37, true);
WriteLiteral("</td>\r\n <td>\r\n");
EndContext();
#line 42 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
if (d.EAdmin == true)
{
#line default
#line hidden
BeginContext(1496, 50, true);
WriteLiteral(" <span>Sim</span>\r\n");
EndContext();
#line 45 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
}
else
{
#line default
#line hidden
BeginContext(1642, 50, true);
WriteLiteral(" <span>Não</span>\r\n");
EndContext();
#line 49 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
}
#line default
#line hidden
BeginContext(1723, 89, true);
WriteLiteral(" </td>\r\n <td>\r\n ");
EndContext();
BeginContext(1812, 174, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa511544", async() => {
BeginContext(1891, 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 52 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
WriteLiteral(d.Id);
#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(1986, 30, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(2016, 174, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa514455", async() => {
BeginContext(2094, 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 55 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
WriteLiteral(d.Id);
#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(2190, 60, true);
WriteLiteral("\r\n </td>\r\n </tr>\r\n");
EndContext();
#line 60 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
}
#line default
#line hidden
BeginContext(2269, 378, true);
WriteLiteral(@" </tbody>
</table>
</div>
</section>
<section class=""py-3"">
<div class=""card"">
<div class=""card-header"">
<div class=""row"">
<div class=""col-6"">
Projetos
</div>
<div class=""col-6"">
<div class=""text-right"">
");
EndContext();
BeginContext(2647, 150, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa518045", async() => {
BeginContext(2703, 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_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(2797, 749, 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"">Nome</th>
<th scope=""col"">Data de Entrega</th>
<th scope=""col"">Solicitante</th>
<th scope=""col"">Opções</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Guilherme</td>
<td>Abril</td>
<td>Kewin</td>
<td>
");
EndContext();
BeginContext(3546, 158, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa520678", async() => {
BeginContext(3617, 83, 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_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_7.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(3704, 26, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(3730, 159, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa523077", async() => {
BeginContext(3801, 84, 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_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_7.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(3889, 432, true);
WriteLiteral(@"
</td>
</tr>
</tbody>
</table>
</div>
</section>
<section class=""py-3"">
<div class=""card"">
<div class=""card-header"">
<div class=""row"">
<div class=""col-6"">
Requisitos
</div>
<div class=""col-6"">
<div class=""text-right"">
");
EndContext();
BeginContext(4321, 150, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa525897", async() => {
BeginContext(4377, 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_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(4471, 754, 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"">Descrição</th>
<th scope=""col"">Observações</th>
<th scope=""col"">Data de Entrega</th>
<th scope=""col"">Opções</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Guilherme</td>
<td>Abril</td>
<td>Kewin</td>
<td>
");
EndContext();
BeginContext(5225, 158, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa528535", async() => {
BeginContext(5296, 83, 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_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_7.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(5383, 26, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(5409, 159, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa530934", async() => {
BeginContext(5480, 84, 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_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_7.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(5568, 426, true);
WriteLiteral(@"
</td>
</tr>
</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"">
");
EndContext();
BeginContext(5994, 150, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa533748", async() => {
BeginContext(6050, 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_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(6144, 846, 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"">Prioridade</th>
<th scope=""col"">Data de Cadastro</th>
<th scope=""col"">Data de Entrega</th>
<th scope=""col"">Resolvido</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(6990, 158, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa536480", async() => {
BeginContext(7061, 83, 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_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_7.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(7148, 26, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(7174, 159, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa538879", async() => {
BeginContext(7245, 84, 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_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_7.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(7333, 114, true);
WriteLiteral("\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n</section>");
EndContext();
}
#pragma warning restore 1998

View File

@ -1,4 +1,4 @@
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "130fda37d455af27ecfd2837acd739c8de556f86"
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "3be3d9e38bd96a4ddbc0df01e40d2bf039e90319"
// <auto-generated/>
#pragma warning disable 1591
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Shared__Layout), @"mvc.1.0.view", @"/Views/Shared/_Layout.cshtml")]
@ -23,7 +23,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"130fda37d455af27ecfd2837acd739c8de556f86", @"/Views/Shared/_Layout.cshtml")]
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"3be3d9e38bd96a4ddbc0df01e40d2bf039e90319", @"/Views/Shared/_Layout.cshtml")]
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
public class Views_Shared__Layout : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
{
@ -99,7 +99,7 @@ using GerenciaProjetos.Models;
WriteLiteral("<!DOCTYPE html>\r\n<html>\r\n");
EndContext();
BeginContext(25, 1034, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("head", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "130fda37d455af27ecfd2837acd739c8de556f8617847", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("head", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031917847", async() => {
BeginContext(31, 121, true);
WriteLiteral("\r\n <meta charset=\"utf-8\" />\r\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n <title>");
EndContext();
@ -114,12 +114,12 @@ using GerenciaProjetos.Models;
WriteLiteral(" - GerenciaProjetos</title>\r\n\r\n ");
EndContext();
BeginContext(205, 136, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "130fda37d455af27ecfd2837acd739c8de556f8618756", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031918756", async() => {
BeginContext(240, 10, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(250, 71, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "130fda37d455af27ecfd2837acd739c8de556f8619174", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031919174", async() => {
}
);
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
@ -155,12 +155,12 @@ using GerenciaProjetos.Models;
WriteLiteral("\r\n ");
EndContext();
BeginContext(347, 508, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "130fda37d455af27ecfd2837acd739c8de556f8621666", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031921666", async() => {
BeginContext(382, 10, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(392, 443, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "130fda37d455af27ecfd2837acd739c8de556f8622085", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031922085", async() => {
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_LinkTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper>();
@ -207,7 +207,7 @@ using GerenciaProjetos.Models;
WriteLiteral("\r\n ");
EndContext();
BeginContext(861, 69, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "130fda37d455af27ecfd2837acd739c8de556f8625744", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031925744", async() => {
}
);
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
@ -227,7 +227,7 @@ using GerenciaProjetos.Models;
WriteLiteral("\r\n ");
EndContext();
BeginContext(936, 61, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "130fda37d455af27ecfd2837acd739c8de556f8627167", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031927167", async() => {
}
);
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
@ -246,7 +246,7 @@ using GerenciaProjetos.Models;
WriteLiteral("\r\n ");
EndContext();
BeginContext(1003, 47, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "130fda37d455af27ecfd2837acd739c8de556f8628503", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031928503", async() => {
}
);
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
@ -279,18 +279,18 @@ using GerenciaProjetos.Models;
BeginContext(1059, 2, true);
WriteLiteral("\r\n");
EndContext();
BeginContext(1061, 7101, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("body", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "130fda37d455af27ecfd2837acd739c8de556f8630637", async() => {
BeginContext(1067, 152, true);
WriteLiteral("\r\n <header>\r\n <nav class=\"navbar navbar-expand-lg navbar-dark bg-dark box-shadow mb-3\">\r\n <div class=\"container\">\r\n ");
BeginContext(1061, 7115, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("body", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031930637", async() => {
BeginContext(1067, 168, true);
WriteLiteral("\r\n <header>\r\n <nav class=\"navbar navbar-expand-lg navbar-light bg-light border-bottom box-shadow mb-3\">\r\n <div class=\"container\">\r\n ");
EndContext();
BeginContext(1219, 235, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "130fda37d455af27ecfd2837acd739c8de556f8631184", async() => {
BeginContext(1296, 22, true);
BeginContext(1235, 233, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031931200", async() => {
BeginContext(1312, 22, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(1318, 83, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("img", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "130fda37d455af27ecfd2837acd739c8de556f8631606", async() => {
BeginContext(1334, 83, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("img", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031931622", async() => {
}
);
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
@ -307,8 +307,8 @@ using GerenciaProjetos.Models;
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(1401, 49, true);
WriteLiteral("\r\n Dashboard\r\n ");
BeginContext(1417, 47, true);
WriteLiteral("\r\n TribuFu\r\n ");
EndContext();
}
);
@ -329,7 +329,7 @@ using GerenciaProjetos.Models;
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(1454, 527, true);
BeginContext(1468, 527, true);
WriteLiteral(@"
<button class=""navbar-toggler"" type=""button"" data-toggle=""collapse"" data-target=""#navbarSupportedContent"" aria-controls=""navbarSupportedContent"" aria-expanded=""false"" aria-label=""Toggle navigation"">
<span class=""navbar-toggler-icon""></span>
@ -339,9 +339,9 @@ using GerenciaProjetos.Models;
<li class=""nav-item active"">
");
EndContext();
BeginContext(1981, 81, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "130fda37d455af27ecfd2837acd739c8de556f8635373", async() => {
BeginContext(2054, 4, true);
BeginContext(1995, 81, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031935387", async() => {
BeginContext(2068, 4, true);
WriteLiteral("Home");
EndContext();
}
@ -363,7 +363,7 @@ using GerenciaProjetos.Models;
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(2062, 276, true);
BeginContext(2076, 276, true);
WriteLiteral(@"
</li>
</ul>
@ -377,14 +377,14 @@ using GerenciaProjetos.Models;
<main role=""main"" class=""pb-3"">
");
EndContext();
BeginContext(2339, 12, false);
BeginContext(2353, 12, false);
#line 47 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
Write(RenderBody());
#line default
#line hidden
EndContext();
BeginContext(2351, 161, true);
BeginContext(2365, 161, true);
WriteLiteral("\r\n </main>\r\n </div>\r\n\r\n <footer>\r\n <div class=\"container\">\r\n <div class=\"text-center\">\r\n <ul class=\"list-inline\">\r\n");
EndContext();
#line 55 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
@ -393,7 +393,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(2567, 330, true);
BeginContext(2581, 330, true);
WriteLiteral(@" <li class=""list-inline-item"">
<a class=""text-decoration-none"" href=""https://twitter.com/tribufucom"" target=""_blank"" style=""color: #00aced;"">
<i class=""fab fa-2x fa-twitter""></i>
@ -406,7 +406,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(2920, 20, true);
BeginContext(2934, 20, true);
WriteLiteral(" ");
EndContext();
#line 63 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
@ -415,7 +415,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(2975, 375, true);
BeginContext(2989, 375, true);
WriteLiteral(@" <li class=""list-inline-item"">
<a class=""text-decoration-none"" href=""https://www.youtube.com/channel/UC_lQ7lHpEQTNt65v-r2JcOg?ab_channel=GuiNerd"" target=""_blank"" style=""color: #e62117;"">
<i class=""fab fa-2x fa-youtube""></i>
@ -428,7 +428,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(3373, 20, true);
BeginContext(3387, 20, true);
WriteLiteral(" ");
EndContext();
#line 71 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
@ -437,7 +437,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(3428, 342, true);
BeginContext(3442, 342, true);
WriteLiteral(@" <li class=""list-inline-item"">
<a class=""text-decoration-none"" href=""https://steamcommunity.com/groups/tribufucom"" target=""_blank"" style=""color: #231f20;"">
<i class=""fab fa-2x fa-steam""></i>
@ -450,7 +450,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(3793, 20, true);
BeginContext(3807, 20, true);
WriteLiteral(" ");
EndContext();
#line 79 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
@ -459,7 +459,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(3849, 300, true);
BeginContext(3863, 300, true);
WriteLiteral(@" <li class=""list-inline-item"">
<a class=""text-decoration-none"" href=""#"" target=""_blank"" style=""color: #ff4500;"">
<i class=""fab fa-2x fa-reddit""></i>
@ -472,7 +472,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(4172, 20, true);
BeginContext(4186, 20, true);
WriteLiteral(" ");
EndContext();
#line 87 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
@ -481,7 +481,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(4228, 309, true);
BeginContext(4242, 309, true);
WriteLiteral(@" <li class=""list-inline-item"">
<a class=""text-decoration-none"" href=""#"" target=""_blank"" style=""color: #3d6594;"">
<i class=""fab fa-2x fa-facebook-square""></i>
@ -494,7 +494,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(4560, 20, true);
BeginContext(4574, 20, true);
WriteLiteral(" ");
EndContext();
#line 95 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
@ -503,7 +503,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(4615, 325, true);
BeginContext(4629, 325, true);
WriteLiteral(@" <li class=""list-inline-item"">
<a class=""text-decoration-none"" href=""https://github.com/TribuFu"" target=""_blank"" style=""color: #24292e;"">
<i class=""fab fa-2x fa-github""></i>
@ -516,7 +516,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(4963, 20, true);
BeginContext(4977, 20, true);
WriteLiteral(" ");
EndContext();
#line 103 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
@ -525,7 +525,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(5018, 339, true);
BeginContext(5032, 339, true);
WriteLiteral(@" <li class=""list-inline-item"">
<a class=""text-decoration-none"" href=""https://www.instagram.com/tribufucom/"" target=""_blank"" style=""color: #e13d62;"">
<i class=""fab fa-2x fa-instagram""></i>
@ -538,7 +538,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(5380, 20, true);
BeginContext(5394, 20, true);
WriteLiteral(" ");
EndContext();
#line 111 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
@ -547,7 +547,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(5435, 342, true);
BeginContext(5449, 342, true);
WriteLiteral(@" <li class=""list-inline-item"">
<a class=""text-decoration-none"" href=""https://www.linkedin.com/company/tribufu/"" target=""_blank"" style=""color: #3d6594;"">
<i class=""fab fa-2x fa-linkedin""></i>
@ -560,7 +560,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(5800, 20, true);
BeginContext(5814, 20, true);
WriteLiteral(" ");
EndContext();
#line 119 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
@ -569,7 +569,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(5856, 303, true);
BeginContext(5870, 303, true);
WriteLiteral(@" <li class=""list-inline-item"">
<a class=""text-decoration-none"" href=""#"" target=""_blank"" style=""color: #bd081c;"">
<i class=""fab fa-2x fa-pinterest""></i>
@ -582,7 +582,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(6182, 23, true);
BeginContext(6196, 23, true);
WriteLiteral(" </ul>\r\n");
EndContext();
#line 128 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
@ -591,12 +591,12 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(6252, 156, true);
BeginContext(6266, 156, true);
WriteLiteral(" <ul class=\"list-inline\" style=\"margin-bottom:0em;\">\r\n <li class=\"list-inline-item\">\r\n ");
EndContext();
BeginContext(6408, 118, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "130fda37d455af27ecfd2837acd739c8de556f8647087", async() => {
BeginContext(6511, 11, true);
BeginContext(6422, 118, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031947101", async() => {
BeginContext(6525, 11, true);
WriteLiteral("Privacidade");
EndContext();
}
@ -624,12 +624,12 @@ using GerenciaProjetos.Models;
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(6526, 116, true);
BeginContext(6540, 116, true);
WriteLiteral("\r\n </li>\r\n <li class=\"list-inline-item\">\r\n ");
EndContext();
BeginContext(6642, 111, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "130fda37d455af27ecfd2837acd739c8de556f8649729", async() => {
BeginContext(6738, 11, true);
BeginContext(6656, 111, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031949743", async() => {
BeginContext(6752, 11, true);
WriteLiteral("Contate Nos");
EndContext();
}
@ -657,17 +657,17 @@ using GerenciaProjetos.Models;
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(6753, 130, true);
BeginContext(6767, 130, true);
WriteLiteral("\r\n </li>\r\n </ul>\r\n <small style=\"color:#8d9aa6;\">Copyright © TribuFu ");
EndContext();
BeginContext(6884, 17, false);
BeginContext(6898, 17, false);
#line 138 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
Write(DateTime.Now.Year);
#line default
#line hidden
EndContext();
BeginContext(6901, 10, true);
BeginContext(6915, 10, true);
WriteLiteral("</small>\r\n");
EndContext();
#line 139 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
@ -675,16 +675,16 @@ using GerenciaProjetos.Models;
#line default
#line hidden
BeginContext(6930, 57, true);
BeginContext(6944, 57, true);
WriteLiteral(" </div>\r\n </div>\r\n </footer>\r\n\r\n ");
EndContext();
BeginContext(6987, 193, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "130fda37d455af27ecfd2837acd739c8de556f8653150", async() => {
BeginContext(7022, 10, true);
BeginContext(7001, 193, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031953164", async() => {
BeginContext(7036, 10, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(7032, 51, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "130fda37d455af27ecfd2837acd739c8de556f8653570", async() => {
BeginContext(7046, 51, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031953584", async() => {
}
);
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
@ -698,11 +698,11 @@ using GerenciaProjetos.Models;
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(7083, 10, true);
BeginContext(7097, 10, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(7093, 67, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "130fda37d455af27ecfd2837acd739c8de556f8654904", async() => {
BeginContext(7107, 67, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031954918", async() => {
}
);
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
@ -716,7 +716,7 @@ using GerenciaProjetos.Models;
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(7160, 6, true);
BeginContext(7174, 6, true);
WriteLiteral("\r\n ");
EndContext();
}
@ -733,17 +733,17 @@ using GerenciaProjetos.Models;
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(7180, 6, true);
BeginContext(7194, 6, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(7186, 849, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "130fda37d455af27ecfd2837acd739c8de556f8657317", async() => {
BeginContext(7221, 10, true);
BeginContext(7200, 849, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031957331", async() => {
BeginContext(7235, 10, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(7231, 340, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "130fda37d455af27ecfd2837acd739c8de556f8657738", async() => {
BeginContext(7552, 10, true);
BeginContext(7245, 340, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031957752", async() => {
BeginContext(7566, 10, true);
WriteLiteral("\r\n ");
EndContext();
}
@ -766,12 +766,12 @@ using GerenciaProjetos.Models;
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(7571, 10, true);
BeginContext(7585, 10, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(7581, 434, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "130fda37d455af27ecfd2837acd739c8de556f8659952", async() => {
BeginContext(7996, 10, true);
BeginContext(7595, 434, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031959966", async() => {
BeginContext(8010, 10, true);
WriteLiteral("\r\n ");
EndContext();
}
@ -794,7 +794,7 @@ using GerenciaProjetos.Models;
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(8015, 6, true);
BeginContext(8029, 6, true);
WriteLiteral("\r\n ");
EndContext();
}
@ -811,11 +811,11 @@ using GerenciaProjetos.Models;
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(8035, 6, true);
BeginContext(8049, 6, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(8041, 62, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "130fda37d455af27ecfd2837acd739c8de556f8663245", async() => {
BeginContext(8055, 62, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031963259", async() => {
}
);
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
@ -838,17 +838,17 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.AppendVersion = true;
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(8103, 8, true);
BeginContext(8117, 8, true);
WriteLiteral("\r\n\r\n ");
EndContext();
BeginContext(8112, 41, false);
BeginContext(8126, 41, false);
#line 164 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
Write(RenderSection("Scripts", required: false));
#line default
#line hidden
EndContext();
BeginContext(8153, 2, true);
BeginContext(8167, 2, true);
WriteLiteral("\r\n");
EndContext();
}
@ -863,7 +863,7 @@ Write(RenderSection("Scripts", required: false));
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(8162, 11, true);
BeginContext(8176, 11, true);
WriteLiteral("\r\n</html>\r\n");
EndContext();
}

View File

@ -62,6 +62,10 @@ button.accept-policy {
}
}
.table {
margin-bottom: 0 !important;
}
/* Sticky footer styles
-------------------------------------------------- */
html {