mirror of
https://github.com/guilhermewerner/gerencia-projetos
synced 2025-06-15 22:45:09 +00:00
Acho q acabou
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -55,7 +55,7 @@ namespace GerenciaProjetos.Controllers
|
||||
ctx.Bugs.Add(bug);
|
||||
ctx.SaveChanges();
|
||||
|
||||
return RedirectToAction("Index", "Home");
|
||||
return RedirectToAction("Index", "Dashboard");
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -87,7 +87,7 @@ namespace GerenciaProjetos.Controllers
|
||||
}
|
||||
else
|
||||
{
|
||||
return RedirectToAction("Index", "Home");
|
||||
return RedirectToAction("Index", "Dashboard");
|
||||
}
|
||||
}
|
||||
|
||||
@ -97,7 +97,8 @@ namespace GerenciaProjetos.Controllers
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
ctx.Entry(bug).Property(r => r.DesenvolvedorId).IsModified = true;
|
||||
ctx.Entry(bug).Property(r => r.CriadorId).IsModified = true;
|
||||
ctx.Entry(bug).Property(r => r.SolucionadorId).IsModified = true;
|
||||
ctx.Entry(bug).Property(r => r.RequisitoId).IsModified = true;
|
||||
ctx.Entry(bug).Property(r => r.FoiResolvido).IsModified = true;
|
||||
ctx.Entry(bug).Property(r => r.Descricao).IsModified = true;
|
||||
@ -105,7 +106,7 @@ namespace GerenciaProjetos.Controllers
|
||||
|
||||
ctx.SaveChanges();
|
||||
|
||||
return RedirectToAction("Index", "Home");
|
||||
return RedirectToAction("Index", "Dashboard");
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -123,7 +124,7 @@ namespace GerenciaProjetos.Controllers
|
||||
ctx.SaveChanges();
|
||||
}
|
||||
|
||||
return RedirectToAction("Index", "Home");
|
||||
return RedirectToAction("Index", "Dashboard");
|
||||
}
|
||||
}
|
||||
}
|
29
GerenciaProjetos/Controllers/DashboardController.cs
Normal file
29
GerenciaProjetos/Controllers/DashboardController.cs
Normal file
@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using GerenciaProjetos.Data;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace GerenciaProjetos.Controllers
|
||||
{
|
||||
public class DashboardController : Controller
|
||||
{
|
||||
private GerenciaContext ctx;
|
||||
|
||||
public DashboardController(GerenciaContext ctx)
|
||||
{
|
||||
this.ctx = ctx;
|
||||
}
|
||||
|
||||
public IActionResult Index()
|
||||
{
|
||||
ViewBag.Desenvolvedores = ctx.Desenvolvedores;
|
||||
ViewBag.Projetos = ctx.Projetos;
|
||||
ViewBag.Requisitos = ctx.Requisitos;
|
||||
ViewBag.Bugs = ctx.Bugs;
|
||||
|
||||
return View();
|
||||
}
|
||||
}
|
||||
}
|
@ -40,7 +40,7 @@ namespace GerenciaProjetos.Controllers
|
||||
ctx.Desenvolvedores.Add(dev);
|
||||
ctx.SaveChanges();
|
||||
|
||||
return RedirectToAction("Index", "Home");
|
||||
return RedirectToAction("Index", "Dashboard");
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -60,7 +60,7 @@ namespace GerenciaProjetos.Controllers
|
||||
}
|
||||
else
|
||||
{
|
||||
return RedirectToAction("Index", "Home");
|
||||
return RedirectToAction("Index", "Dashboard");
|
||||
}
|
||||
}
|
||||
|
||||
@ -73,7 +73,7 @@ namespace GerenciaProjetos.Controllers
|
||||
ctx.Desenvolvedores.Update(dev);
|
||||
ctx.SaveChanges();
|
||||
|
||||
return RedirectToAction("Index", "Home");
|
||||
return RedirectToAction("Index", "Dashboard");
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -91,7 +91,7 @@ namespace GerenciaProjetos.Controllers
|
||||
ctx.SaveChanges();
|
||||
}
|
||||
|
||||
return RedirectToAction("Index", "Home");
|
||||
return RedirectToAction("Index", "Dashboard");
|
||||
}
|
||||
}
|
||||
}
|
@ -6,6 +6,7 @@ using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using GerenciaProjetos.Models;
|
||||
using GerenciaContext = GerenciaProjetos.Data.GerenciaContext;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
|
||||
namespace GerenciaProjetos.Controllers
|
||||
{
|
||||
@ -20,14 +21,52 @@ namespace GerenciaProjetos.Controllers
|
||||
|
||||
public IActionResult Index()
|
||||
{
|
||||
ViewBag.Desenvolvedores = ctx.Desenvolvedores;
|
||||
ViewBag.Projetos = ctx.Projetos;
|
||||
ViewBag.Requisitos = ctx.Requisitos;
|
||||
ViewBag.Bugs = ctx.Bugs;
|
||||
|
||||
return View();
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public IActionResult Index(Desenvolvedor dev)
|
||||
{
|
||||
Desenvolvedor desenvolvedor = ctx.Desenvolvedores.Where(a => a.Email == dev.Email && a.Senha == dev.Senha).FirstOrDefault();
|
||||
if (desenvolvedor != null)
|
||||
{
|
||||
HttpContext.Session.SetInt32("Id", desenvolvedor.Id);
|
||||
HttpContext.Session.SetString("Email", desenvolvedor.Email);
|
||||
HttpContext.Session.SetInt32("EAdmin", desenvolvedor.EAdmin ? 1 : 0);
|
||||
|
||||
ViewBag.Projeto = ctx.Projetos;
|
||||
|
||||
return RedirectToAction("Index", "Dashboard");
|
||||
}
|
||||
else
|
||||
{
|
||||
ViewBag.Mensagem = "Usuario não encontrado!";
|
||||
|
||||
return View();
|
||||
}
|
||||
}
|
||||
|
||||
public IActionResult Cadastro()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public IActionResult Cadastro(Desenvolvedor dev)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
ctx.Desenvolvedores.Add(dev);
|
||||
ctx.SaveChanges();
|
||||
|
||||
return RedirectToAction("Index", "Dashboard");
|
||||
}
|
||||
else
|
||||
{
|
||||
return View("Form", dev);
|
||||
}
|
||||
}
|
||||
|
||||
public IActionResult Privacy()
|
||||
{
|
||||
return View();
|
||||
|
@ -40,7 +40,7 @@ namespace GerenciaProjetos.Controllers
|
||||
ctx.Projetos.Add(proj);
|
||||
ctx.SaveChanges();
|
||||
|
||||
return RedirectToAction("Index", "Home");
|
||||
return RedirectToAction("Index", "Dashboard");
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -60,7 +60,7 @@ namespace GerenciaProjetos.Controllers
|
||||
}
|
||||
else
|
||||
{
|
||||
return RedirectToAction("Index", "Home");
|
||||
return RedirectToAction("Index", "Dashboard");
|
||||
}
|
||||
}
|
||||
|
||||
@ -73,7 +73,7 @@ namespace GerenciaProjetos.Controllers
|
||||
ctx.Projetos.Update(proj);
|
||||
ctx.SaveChanges();
|
||||
|
||||
return RedirectToAction("Index", "Home");
|
||||
return RedirectToAction("Index", "Dashboard");
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -91,7 +91,7 @@ namespace GerenciaProjetos.Controllers
|
||||
ctx.SaveChanges();
|
||||
}
|
||||
|
||||
return RedirectToAction("Index", "Home");
|
||||
return RedirectToAction("Index", "Dashboard");
|
||||
}
|
||||
}
|
||||
}
|
@ -49,7 +49,7 @@ namespace GerenciaProjetos.Controllers
|
||||
ctx.Requisitos.Add(req);
|
||||
ctx.SaveChanges();
|
||||
|
||||
return RedirectToAction("Index", "Home");
|
||||
return RedirectToAction("Index", "Dashboard");
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -75,7 +75,7 @@ namespace GerenciaProjetos.Controllers
|
||||
}
|
||||
else
|
||||
{
|
||||
return RedirectToAction("Index", "Home");
|
||||
return RedirectToAction("Index", "Dashboard");
|
||||
}
|
||||
}
|
||||
|
||||
@ -94,7 +94,7 @@ namespace GerenciaProjetos.Controllers
|
||||
|
||||
ctx.SaveChanges();
|
||||
|
||||
return RedirectToAction("Index", "Home");
|
||||
return RedirectToAction("Index", "Dashboard");
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -112,7 +112,7 @@ namespace GerenciaProjetos.Controllers
|
||||
ctx.SaveChanges();
|
||||
}
|
||||
|
||||
return RedirectToAction("Index", "Home");
|
||||
return RedirectToAction("Index", "Dashboard");
|
||||
}
|
||||
}
|
||||
}
|
38
GerenciaProjetos/Filters/LoginFilterAttribute.cs
Normal file
38
GerenciaProjetos/Filters/LoginFilterAttribute.cs
Normal file
@ -0,0 +1,38 @@
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Filters;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace GerenciaProjetos.Filters
|
||||
{
|
||||
public class LoginFilterAttribute : Attribute, IActionFilter
|
||||
{
|
||||
public bool Restrito { get; set; }
|
||||
|
||||
public void OnActionExecuted(ActionExecutedContext context)
|
||||
{
|
||||
int? IdUsuario = context.HttpContext.Session.GetInt32("Id");
|
||||
|
||||
if (IdUsuario == null)
|
||||
{
|
||||
context.Result = new RedirectToRouteResult(new { controller = "Home", action = "Index" });
|
||||
}
|
||||
else if (context.HttpContext.Session.GetInt32("EAdmin") != 1 && Restrito)
|
||||
{
|
||||
context.Result = new RedirectToRouteResult(new
|
||||
{
|
||||
controller = "Dashboard",
|
||||
action = "Index"
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
public void OnActionExecuting(ActionExecutingContext context)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
@ -9,7 +9,7 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||||
namespace GerenciaProjetos.Migrations
|
||||
{
|
||||
[DbContext(typeof(GerenciaContext))]
|
||||
[Migration("20190924211432_1")]
|
||||
[Migration("20191130154458_1")]
|
||||
partial class _1
|
||||
{
|
||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||
@ -24,14 +24,14 @@ namespace GerenciaProjetos.Migrations
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd();
|
||||
|
||||
b.Property<int>("CriadorId");
|
||||
|
||||
b.Property<DateTime>("DataCadastro");
|
||||
|
||||
b.Property<string>("Descricao")
|
||||
.IsRequired()
|
||||
.HasMaxLength(100);
|
||||
|
||||
b.Property<int>("DesenvolvedorId");
|
||||
|
||||
b.Property<bool>("FoiResolvido");
|
||||
|
||||
b.Property<string>("Prioridade")
|
||||
@ -39,12 +39,16 @@ namespace GerenciaProjetos.Migrations
|
||||
|
||||
b.Property<int>("RequisitoId");
|
||||
|
||||
b.Property<int>("SolucionadorId");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("DesenvolvedorId");
|
||||
b.HasIndex("CriadorId");
|
||||
|
||||
b.HasIndex("RequisitoId");
|
||||
|
||||
b.HasIndex("SolucionadorId");
|
||||
|
||||
b.ToTable("Bugs");
|
||||
});
|
||||
|
||||
@ -149,15 +153,20 @@ namespace GerenciaProjetos.Migrations
|
||||
|
||||
modelBuilder.Entity("GerenciaProjetos.Models.Bug", b =>
|
||||
{
|
||||
b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Desenvolvedor")
|
||||
b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Criador")
|
||||
.WithMany()
|
||||
.HasForeignKey("DesenvolvedorId")
|
||||
.HasForeignKey("CriadorId")
|
||||
.OnDelete(DeleteBehavior.Cascade);
|
||||
|
||||
b.HasOne("GerenciaProjetos.Models.Requisito", "Requisito")
|
||||
.WithMany()
|
||||
.WithMany("Bugs")
|
||||
.HasForeignKey("RequisitoId")
|
||||
.OnDelete(DeleteBehavior.Cascade);
|
||||
|
||||
b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Solucionador")
|
||||
.WithMany()
|
||||
.HasForeignKey("SolucionadorId")
|
||||
.OnDelete(DeleteBehavior.Cascade);
|
||||
});
|
||||
|
||||
modelBuilder.Entity("GerenciaProjetos.Models.DesenvolvedorProjeto", b =>
|
@ -93,7 +93,8 @@ namespace GerenciaProjetos.Migrations
|
||||
{
|
||||
Id = table.Column<int>(nullable: false)
|
||||
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
||||
DesenvolvedorId = table.Column<int>(nullable: false),
|
||||
CriadorId = table.Column<int>(nullable: false),
|
||||
SolucionadorId = table.Column<int>(nullable: false),
|
||||
RequisitoId = table.Column<int>(nullable: false),
|
||||
Descricao = table.Column<string>(maxLength: 100, nullable: false),
|
||||
Prioridade = table.Column<string>(maxLength: 25, nullable: true),
|
||||
@ -104,8 +105,8 @@ namespace GerenciaProjetos.Migrations
|
||||
{
|
||||
table.PrimaryKey("PK_Bugs", x => x.Id);
|
||||
table.ForeignKey(
|
||||
name: "FK_Bugs_Desenvolvedores_DesenvolvedorId",
|
||||
column: x => x.DesenvolvedorId,
|
||||
name: "FK_Bugs_Desenvolvedores_CriadorId",
|
||||
column: x => x.CriadorId,
|
||||
principalTable: "Desenvolvedores",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
@ -115,6 +116,12 @@ namespace GerenciaProjetos.Migrations
|
||||
principalTable: "Requisitos",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
table.ForeignKey(
|
||||
name: "FK_Bugs_Desenvolvedores_SolucionadorId",
|
||||
column: x => x.SolucionadorId,
|
||||
principalTable: "Desenvolvedores",
|
||||
principalColumn: "Id",
|
||||
onDelete: ReferentialAction.Cascade);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
@ -143,15 +150,20 @@ namespace GerenciaProjetos.Migrations
|
||||
});
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Bugs_DesenvolvedorId",
|
||||
name: "IX_Bugs_CriadorId",
|
||||
table: "Bugs",
|
||||
column: "DesenvolvedorId");
|
||||
column: "CriadorId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Bugs_RequisitoId",
|
||||
table: "Bugs",
|
||||
column: "RequisitoId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Bugs_SolucionadorId",
|
||||
table: "Bugs",
|
||||
column: "SolucionadorId");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_DesenvolvedorProjeto_ProjetoId",
|
||||
table: "DesenvolvedorProjeto",
|
@ -22,14 +22,14 @@ namespace GerenciaProjetos.Migrations
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd();
|
||||
|
||||
b.Property<int>("CriadorId");
|
||||
|
||||
b.Property<DateTime>("DataCadastro");
|
||||
|
||||
b.Property<string>("Descricao")
|
||||
.IsRequired()
|
||||
.HasMaxLength(100);
|
||||
|
||||
b.Property<int>("DesenvolvedorId");
|
||||
|
||||
b.Property<bool>("FoiResolvido");
|
||||
|
||||
b.Property<string>("Prioridade")
|
||||
@ -37,12 +37,16 @@ namespace GerenciaProjetos.Migrations
|
||||
|
||||
b.Property<int>("RequisitoId");
|
||||
|
||||
b.Property<int>("SolucionadorId");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("DesenvolvedorId");
|
||||
b.HasIndex("CriadorId");
|
||||
|
||||
b.HasIndex("RequisitoId");
|
||||
|
||||
b.HasIndex("SolucionadorId");
|
||||
|
||||
b.ToTable("Bugs");
|
||||
});
|
||||
|
||||
@ -147,15 +151,20 @@ namespace GerenciaProjetos.Migrations
|
||||
|
||||
modelBuilder.Entity("GerenciaProjetos.Models.Bug", b =>
|
||||
{
|
||||
b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Desenvolvedor")
|
||||
b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Criador")
|
||||
.WithMany()
|
||||
.HasForeignKey("DesenvolvedorId")
|
||||
.HasForeignKey("CriadorId")
|
||||
.OnDelete(DeleteBehavior.Cascade);
|
||||
|
||||
b.HasOne("GerenciaProjetos.Models.Requisito", "Requisito")
|
||||
.WithMany()
|
||||
.WithMany("Bugs")
|
||||
.HasForeignKey("RequisitoId")
|
||||
.OnDelete(DeleteBehavior.Cascade);
|
||||
|
||||
b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Solucionador")
|
||||
.WithMany()
|
||||
.HasForeignKey("SolucionadorId")
|
||||
.OnDelete(DeleteBehavior.Cascade);
|
||||
});
|
||||
|
||||
modelBuilder.Entity("GerenciaProjetos.Models.DesenvolvedorProjeto", b =>
|
||||
|
@ -12,9 +12,12 @@ namespace GerenciaProjetos.Models
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
|
||||
public int DesenvolvedorId { get; set; }
|
||||
public Desenvolvedor Desenvolvedor { get; set; }
|
||||
|
||||
public int CriadorId { get; set; }
|
||||
public Desenvolvedor Criador { get; set; }
|
||||
|
||||
public int SolucionadorId { get; set; }
|
||||
public Desenvolvedor Solucionador { get; set; }
|
||||
|
||||
public int RequisitoId { get; set; }
|
||||
public Requisito Requisito { get; set; }
|
||||
|
||||
|
@ -28,6 +28,11 @@ namespace GerenciaProjetos.Models
|
||||
[DataType(DataType.Password)]
|
||||
public string Senha { get; set; }
|
||||
|
||||
[NotMapped]
|
||||
[Required(ErrorMessage = "Este campo é obrigatório.")]
|
||||
[Compare("Senha", ErrorMessage = "As senhas não combinam.")]
|
||||
public string ConfirmarSenha { get; set; }
|
||||
|
||||
public bool EAdmin { get; set; }
|
||||
}
|
||||
}
|
||||
|
@ -31,5 +31,7 @@ namespace GerenciaProjetos.Models
|
||||
public int ProjetoId { get; set; }
|
||||
|
||||
public Projeto Projeto { get; set; }
|
||||
|
||||
public IEnumerable<Bug> Bugs { get; set; }
|
||||
}
|
||||
}
|
||||
|
@ -39,6 +39,11 @@ namespace GerenciaProjetos
|
||||
//services.AddDbContext<GerenciaContext>(options => options.UseMySql(Configuration.GetConnectionString("LaboratConnection")));
|
||||
|
||||
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
|
||||
|
||||
services.AddSession(options => {
|
||||
options.IdleTimeout = TimeSpan.FromMinutes(10);
|
||||
options.Cookie.HttpOnly = true;
|
||||
});
|
||||
}
|
||||
|
||||
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
||||
@ -51,10 +56,13 @@ namespace GerenciaProjetos
|
||||
else
|
||||
{
|
||||
app.UseExceptionHandler("/Home/Error");
|
||||
app.UseHsts();
|
||||
}
|
||||
|
||||
app.UseHttpsRedirection();
|
||||
app.UseStaticFiles();
|
||||
app.UseCookiePolicy();
|
||||
app.UseSession();
|
||||
|
||||
app.UseMvc(routes =>
|
||||
{
|
||||
|
@ -13,7 +13,13 @@
|
||||
<form method="post">
|
||||
<div class="form-group">
|
||||
<label>Desenvolvedor</label>
|
||||
<select asp-for="DesenvolvedorId" class="form-control" asp-items="ViewBag.Desenvolvedores">
|
||||
<select asp-for="CriadorId" class="form-control" asp-items="ViewBag.Desenvolvedores">
|
||||
<option></option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Desenvolvedor</label>
|
||||
<select asp-for="SolucionadorId" class="form-control" asp-items="ViewBag.Desenvolvedores">
|
||||
<option></option>
|
||||
</select>
|
||||
</div>
|
||||
|
207
GerenciaProjetos/Views/Dashboard/Index.cshtml
Normal file
207
GerenciaProjetos/Views/Dashboard/Index.cshtml
Normal file
@ -0,0 +1,207 @@
|
||||
@{
|
||||
ViewData["Title"] = "Dashboard";
|
||||
}
|
||||
|
||||
<h3>@ViewData["Title"]</h3>
|
||||
|
||||
<section class="py-3">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
<a class="text-decoration-none" asp-area="" asp-controller="Desenvolvedores" asp-action="Index">Desenvolvedores</a>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<div class="text-right">
|
||||
<a asp-area="" asp-controller="Desenvolvedores" 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">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>@d.EAdmin</td>
|
||||
<td>
|
||||
<a asp-area="" asp-controller="Desenvolvedores" asp-action="Edit" asp-route-id="@d.Id">
|
||||
<i class="fas fa-edit"></i>
|
||||
</a>
|
||||
<a asp-area="" asp-controller="Desenvolvedores" asp-action="Del" 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">
|
||||
<a class="text-decoration-none" asp-area="" asp-controller="Projetos" asp-action="Index">Projetos</a>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<div class="text-right">
|
||||
<a asp-area="" asp-controller="Projetos" 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">Nome</th>
|
||||
<th scope="col">Data de Entrega</th>
|
||||
<th scope="col">Solicitante</th>
|
||||
<th scope="col">Opções</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (Projeto p in ViewBag.Projetos)
|
||||
{
|
||||
<tr>
|
||||
<td>@p.Id</td>
|
||||
<td>@p.Nome</td>
|
||||
<td>@p.DataEntrega</td>
|
||||
<td>@p.Solicitante</td>
|
||||
<td>
|
||||
<a asp-area="" asp-controller="Projetos" asp-action="Edit" asp-route-id="@p.Id">
|
||||
<i class="fas fa-edit"></i>
|
||||
</a>
|
||||
<a asp-area="" asp-controller="Projetos" asp-action="Del" asp-route-id="@p.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">
|
||||
<a class="text-decoration-none" asp-area="" asp-controller="Requisitos" asp-action="Index">Requisitos</a>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<div class="text-right">
|
||||
<a asp-area="" asp-controller="Requisitos" 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">Descrição</th>
|
||||
<th scope="col">Observações</th>
|
||||
<th scope="col">É Funcional</th>
|
||||
<th scope="col">Data de Cadastro</th>
|
||||
<th scope="col">Data de Entrega</th>
|
||||
<th scope="col">Opções</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (Requisito r in ViewBag.Requisitos)
|
||||
{
|
||||
<tr>
|
||||
<td>@r.Id</td>
|
||||
<td>@r.Descricao</td>
|
||||
<td>@r.Observacoes</td>
|
||||
<td>@r.EFuncional</td>
|
||||
<td>@r.DataCadastro</td>
|
||||
<td>@r.DataEntrega</td>
|
||||
<td>
|
||||
<a asp-area="" asp-controller="Requisitos" asp-action="Edit" asp-route-id="@r.Id">
|
||||
<i class="fas fa-edit"></i>
|
||||
</a>
|
||||
<a asp-area="" asp-controller="Requisitos" asp-action="Del" asp-route-id="@r.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">
|
||||
<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="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">Descrição</th>
|
||||
<th scope="col">Foi Resolvido</th>
|
||||
<th scope="col">Data de Cadastro</th>
|
||||
<th scope="col">Prioridade</th>
|
||||
<th scope="col">Opções</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (Bug b in ViewBag.Bugs)
|
||||
{
|
||||
<tr>
|
||||
<td>@b.Id</td>
|
||||
<td>@b.Descricao</td>
|
||||
<td>@b.FoiResolvido</td>
|
||||
<td>@b.DataCadastro</td>
|
||||
<td>@b.Prioridade</td>
|
||||
<td>
|
||||
<a asp-area="" asp-controller="Bugs" asp-action="Edit" asp-route-id="@b.Id">
|
||||
<i class="fas fa-edit"></i>
|
||||
</a>
|
||||
<a asp-area="" asp-controller="Bugs" asp-action="Del" asp-route-id="@b.Id">
|
||||
<i class="fas fa-trash"></i>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</section>
|
@ -29,6 +29,10 @@
|
||||
<label>Senha</label>
|
||||
<input type="password" class="form-control" asp-for="Senha">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Confirme</label>
|
||||
<input type="password" class="form-control" asp-for="ConfirmarSenha">
|
||||
</div>
|
||||
<div class="text-right">
|
||||
<a class="btn btn-secondary" asp-area="" asp-controller="Desenvolvedores" asp-action="Index" asp-route-id="">Cancelar</a>
|
||||
<button type="submit" class="btn btn-primary">Confirmar</button>
|
||||
|
42
GerenciaProjetos/Views/Home/Cadastro.cshtml
Normal file
42
GerenciaProjetos/Views/Home/Cadastro.cshtml
Normal file
@ -0,0 +1,42 @@
|
||||
@{
|
||||
ViewData["Title"] = "Cadastro";
|
||||
}
|
||||
|
||||
@model GerenciaProjetos.Models.Desenvolvedor
|
||||
|
||||
<h3>@ViewData["Title"]</h3>
|
||||
|
||||
<section class="py-3">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<form method="post">
|
||||
<div class="form-group">
|
||||
<label>Nome</label>
|
||||
<input type="text" class="form-control" asp-for="Nome">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Email</label>
|
||||
<input type="email" class="form-control" asp-for="Email">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="custom-control custom-checkbox">
|
||||
<input type="checkbox" class="custom-control-input" id="admin" asp-for="EAdmin">
|
||||
<label class="custom-control-label" for="admin">É Administrador?</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Senha</label>
|
||||
<input type="password" class="form-control" asp-for="Senha">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Confirme</label>
|
||||
<input type="password" class="form-control" asp-for="ConfirmarSenha">
|
||||
</div>
|
||||
<div class="text-right">
|
||||
<a class="btn btn-secondary" asp-area="" asp-controller="Desenvolvedores" asp-action="Index" asp-route-id="">Cancelar</a>
|
||||
<button type="submit" class="btn btn-primary">Confirmar</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
@ -1,207 +1,28 @@
|
||||
@{
|
||||
ViewData["Title"] = "Dashboard";
|
||||
ViewData["Title"] = "Entrar";
|
||||
}
|
||||
|
||||
@model GerenciaProjetos.Models.Desenvolvedor
|
||||
|
||||
<h3>@ViewData["Title"]</h3>
|
||||
|
||||
<section class="py-3">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
<a class="text-decoration-none" asp-area="" asp-controller="Desenvolvedores" asp-action="Index">Desenvolvedores</a>
|
||||
<div class="card-body">
|
||||
<form method="post">
|
||||
<div class="form-group">
|
||||
<label>Email</label>
|
||||
<input type="email" class="form-control" asp-for="Email">
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<div class="text-right">
|
||||
<a asp-area="" asp-controller="Desenvolvedores" asp-action="New">
|
||||
<i class="fas fa-plus-circle"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Senha</label>
|
||||
<input type="password" class="form-control" asp-for="Senha">
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-right">
|
||||
<a class="btn btn-link text-decoration-none" asp-area="" asp-controller="Home" asp-action="Cadastro" asp-route-id="">Cadastrar</a>
|
||||
<button type="submit" class="btn btn-primary">Entrar</button>
|
||||
</div>
|
||||
</form>
|
||||
</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>@d.EAdmin</td>
|
||||
<td>
|
||||
<a asp-area="" asp-controller="Desenvolvedores" asp-action="Edit" asp-route-id="@d.Id">
|
||||
<i class="fas fa-edit"></i>
|
||||
</a>
|
||||
<a asp-area="" asp-controller="Desenvolvedores" asp-action="Del" 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">
|
||||
<a class="text-decoration-none" asp-area="" asp-controller="Projetos" asp-action="Index">Projetos</a>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<div class="text-right">
|
||||
<a asp-area="" asp-controller="Projetos" 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">Nome</th>
|
||||
<th scope="col">Data de Entrega</th>
|
||||
<th scope="col">Solicitante</th>
|
||||
<th scope="col">Opções</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (Projeto p in ViewBag.Projetos)
|
||||
{
|
||||
<tr>
|
||||
<td>@p.Id</td>
|
||||
<td>@p.Nome</td>
|
||||
<td>@p.DataEntrega</td>
|
||||
<td>@p.Solicitante</td>
|
||||
<td>
|
||||
<a asp-area="" asp-controller="Projetos" asp-action="Edit" asp-route-id="@p.Id">
|
||||
<i class="fas fa-edit"></i>
|
||||
</a>
|
||||
<a asp-area="" asp-controller="Projetos" asp-action="Del" asp-route-id="@p.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">
|
||||
<a class="text-decoration-none" asp-area="" asp-controller="Requisitos" asp-action="Index">Requisitos</a>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<div class="text-right">
|
||||
<a asp-area="" asp-controller="Requisitos" 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">Descrição</th>
|
||||
<th scope="col">Observações</th>
|
||||
<th scope="col">É Funcional</th>
|
||||
<th scope="col">Data de Cadastro</th>
|
||||
<th scope="col">Data de Entrega</th>
|
||||
<th scope="col">Opções</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (Requisito r in ViewBag.Requisitos)
|
||||
{
|
||||
<tr>
|
||||
<td>@r.Id</td>
|
||||
<td>@r.Descricao</td>
|
||||
<td>@r.Observacoes</td>
|
||||
<td>@r.EFuncional</td>
|
||||
<td>@r.DataCadastro</td>
|
||||
<td>@r.DataEntrega</td>
|
||||
<td>
|
||||
<a asp-area="" asp-controller="Requisitos" asp-action="Edit" asp-route-id="@r.Id">
|
||||
<i class="fas fa-edit"></i>
|
||||
</a>
|
||||
<a asp-area="" asp-controller="Requisitos" asp-action="Del" asp-route-id="@r.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">
|
||||
<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="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">Descrição</th>
|
||||
<th scope="col">Foi Resolvido</th>
|
||||
<th scope="col">Data de Cadastro</th>
|
||||
<th scope="col">Prioridade</th>
|
||||
<th scope="col">Opções</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (Bug b in ViewBag.Bugs)
|
||||
{
|
||||
<tr>
|
||||
<td>@b.Id</td>
|
||||
<td>@b.Descricao</td>
|
||||
<td>@b.FoiResolvido</td>
|
||||
<td>@b.DataCadastro</td>
|
||||
<td>@b.Prioridade</td>
|
||||
<td>
|
||||
<a asp-area="" asp-controller="Bugs" asp-action="Edit" asp-route-id="@b.Id">
|
||||
<i class="fas fa-edit"></i>
|
||||
</a>
|
||||
<a asp-area="" asp-controller="Bugs" asp-action="Del" asp-route-id="@b.Id">
|
||||
<i class="fas fa-trash"></i>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</section>
|
@ -35,6 +35,9 @@
|
||||
<li class="nav-item active">
|
||||
<a class="nav-link" asp-area="" asp-controller="Home" asp-action="Index">Home</a>
|
||||
</li>
|
||||
<li class="nav-item active">
|
||||
<a class="nav-link" asp-area="" asp-controller="Dashboard" asp-action="Index">Dashboard</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
@ -51,92 +54,12 @@
|
||||
<footer>
|
||||
<div class="container">
|
||||
<div class="text-center">
|
||||
<ul class="list-inline">
|
||||
@if (true)
|
||||
{
|
||||
<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>
|
||||
</a>
|
||||
</li>
|
||||
}
|
||||
@if (true)
|
||||
{
|
||||
<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>
|
||||
</a>
|
||||
</li>
|
||||
}
|
||||
@if (true)
|
||||
{
|
||||
<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>
|
||||
</a>
|
||||
</li>
|
||||
}
|
||||
@if (false)
|
||||
{
|
||||
<li class="list-inline-item">
|
||||
<a class="text-decoration-none" href="#" target="_blank" style="color: #ff4500;">
|
||||
<i class="fab fa-2x fa-reddit"></i>
|
||||
</a>
|
||||
</li>
|
||||
}
|
||||
@if (false)
|
||||
{
|
||||
<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>
|
||||
</a>
|
||||
</li>
|
||||
}
|
||||
@if (true)
|
||||
{
|
||||
<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>
|
||||
</a>
|
||||
</li>
|
||||
}
|
||||
@if (true)
|
||||
{
|
||||
<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>
|
||||
</a>
|
||||
</li>
|
||||
}
|
||||
@if (true)
|
||||
{
|
||||
<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>
|
||||
</a>
|
||||
</li>
|
||||
}
|
||||
@if (false)
|
||||
{
|
||||
<li class="list-inline-item">
|
||||
<a class="text-decoration-none" href="#" target="_blank" style="color: #bd081c;">
|
||||
<i class="fab fa-2x fa-pinterest"></i>
|
||||
</a>
|
||||
</li>
|
||||
}
|
||||
<ul class="list-inline" style="margin-bottom:0em;">
|
||||
<li class="list-inline-item">
|
||||
<a class="text-decoration-none" asp-area="" asp-controller="Home" asp-action="Privacy" asp-route-id="">Privacidade</a>
|
||||
</li>
|
||||
</ul>
|
||||
@if (true)
|
||||
{
|
||||
<ul class="list-inline" style="margin-bottom:0em;">
|
||||
<li class="list-inline-item">
|
||||
<a class="text-decoration-none" asp-area="" asp-controller="Home" asp-action="Privacy" asp-route-id="">Privacidade</a>
|
||||
</li>
|
||||
<li class="list-inline-item">
|
||||
<a class="text-decoration-none" asp-area="" asp-controller="Home" asp-action="" asp-route-id="">Contate Nos</a>
|
||||
</li>
|
||||
</ul>
|
||||
<small style="color:#8d9aa6;">Copyright © TribuFu @DateTime.Now.Year</small>
|
||||
}
|
||||
<small style="color:#8d9aa6;">Copyright © TribuFu @DateTime.Now.Year</small>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
c7b3bbeab81fcd814f53f806904f8bea8e240001
|
||||
e345506f56e8e3924c1a8730bf6938104fc7f0c5
|
||||
|
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
a0be7241ff088d48749db13841b45fcab8e9bc86
|
||||
0f38f3ffe37e5ffbf0d2fcb9a5f0792be8005505
|
||||
|
@ -74,3 +74,5 @@ C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\ne
|
||||
C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.dll
|
||||
C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.pdb
|
||||
C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.csproj.CopyComplete
|
||||
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Home\Cadastro.g.cshtml.cs
|
||||
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Dashboard\Index.g.cshtml.cs
|
||||
|
Binary file not shown.
Binary file not shown.
@ -1,4 +1,4 @@
|
||||
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "6ba75510b52d1237801a16dc7ede78708cc53c20"
|
||||
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7dbec80bd92901b9d77581ceedc5814622882f32"
|
||||
// <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")]
|
||||
@ -23,7 +23,7 @@ using GerenciaProjetos.Models;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"6ba75510b52d1237801a16dc7ede78708cc53c20", @"/Views/Bugs/Form.cshtml")]
|
||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"7dbec80bd92901b9d77581ceedc5814622882f32", @"/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>
|
||||
{
|
||||
@ -91,18 +91,18 @@ Write(ViewData["Title"]);
|
||||
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, 1851, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c208405", async() => {
|
||||
BeginContext(220, 2147, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f328405", 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, "6ba75510b52d1237801a16dc7ede78708cc53c208907", async() => {
|
||||
BeginContext(445, 26, true);
|
||||
BeginContext(354, 159, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f328907", async() => {
|
||||
BeginContext(439, 26, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(471, 17, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c209335", async() => {
|
||||
BeginContext(465, 17, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f329335", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
|
||||
@ -115,7 +115,7 @@ Write(ViewData["Title"]);
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(488, 22, true);
|
||||
BeginContext(482, 22, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
}
|
||||
@ -123,7 +123,7 @@ Write(ViewData["Title"]);
|
||||
__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);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.CriadorId);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
@ -143,16 +143,16 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Desenvolve
|
||||
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 ");
|
||||
BeginContext(513, 138, true);
|
||||
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Desenvolvedor</label>\r\n ");
|
||||
EndContext();
|
||||
BeginContext(653, 156, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2012574", async() => {
|
||||
BeginContext(735, 26, true);
|
||||
BeginContext(651, 164, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3212572", async() => {
|
||||
BeginContext(741, 26, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(761, 17, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2013003", async() => {
|
||||
BeginContext(767, 17, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3213001", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>();
|
||||
@ -165,7 +165,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Desenvolve
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(778, 22, true);
|
||||
BeginContext(784, 22, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
}
|
||||
@ -173,13 +173,63 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Desenvolve
|
||||
__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);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.SolucionadorId);
|
||||
|
||||
#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.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(815, 134, true);
|
||||
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Requisito</label>\r\n ");
|
||||
EndContext();
|
||||
BeginContext(949, 156, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3216240", async() => {
|
||||
BeginContext(1031, 26, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(1057, 17, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3216671", 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(1074, 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.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 28 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml"
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Requisitos;
|
||||
|
||||
#line default
|
||||
@ -193,11 +243,11 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Requisitos
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(809, 158, true);
|
||||
BeginContext(1105, 158, true);
|
||||
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <div class=\"custom-control custom-checkbox\">\r\n ");
|
||||
EndContext();
|
||||
BeginContext(967, 86, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "6ba75510b52d1237801a16dc7ede78708cc53c2016259", async() => {
|
||||
BeginContext(1263, 86, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "7dbec80bd92901b9d77581ceedc5814622882f3219930", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
||||
@ -206,7 +256,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Requisitos
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_2);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_3);
|
||||
#line 28 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml"
|
||||
#line 34 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml"
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.FoiResolvido);
|
||||
|
||||
#line default
|
||||
@ -220,7 +270,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1053, 258, true);
|
||||
BeginContext(1349, 258, true);
|
||||
WriteLiteral(@"
|
||||
<label class=""custom-control-label"" for=""admin"">Foi Resolvido?</label>
|
||||
</div>
|
||||
@ -229,15 +279,15 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
||||
<label>Descrição</label>
|
||||
");
|
||||
EndContext();
|
||||
BeginContext(1311, 71, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("textarea", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2018530", async() => {
|
||||
BeginContext(1607, 71, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("textarea", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3222201", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_4);
|
||||
#line 34 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml"
|
||||
#line 40 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml"
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Descricao);
|
||||
|
||||
#line default
|
||||
@ -251,17 +301,17 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.For = ModelExpressionPro
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1382, 135, true);
|
||||
BeginContext(1678, 135, true);
|
||||
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Prioridade</label>\r\n ");
|
||||
EndContext();
|
||||
BeginContext(1517, 225, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2020486", async() => {
|
||||
BeginContext(1567, 26, true);
|
||||
BeginContext(1813, 225, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3224157", async() => {
|
||||
BeginContext(1863, 26, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(1593, 23, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2020917", async() => {
|
||||
BeginContext(1601, 6, true);
|
||||
BeginContext(1889, 23, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3224588", async() => {
|
||||
BeginContext(1897, 6, true);
|
||||
WriteLiteral("Normal");
|
||||
EndContext();
|
||||
}
|
||||
@ -276,12 +326,12 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.For = ModelExpressionPro
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1616, 26, true);
|
||||
BeginContext(1912, 26, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(1642, 22, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2022278", async() => {
|
||||
BeginContext(1650, 5, true);
|
||||
BeginContext(1938, 22, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3225949", async() => {
|
||||
BeginContext(1946, 5, true);
|
||||
WriteLiteral("Baixa");
|
||||
EndContext();
|
||||
}
|
||||
@ -296,12 +346,12 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.For = ModelExpressionPro
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1664, 26, true);
|
||||
BeginContext(1960, 26, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(1690, 21, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2023638", async() => {
|
||||
BeginContext(1698, 4, true);
|
||||
BeginContext(1986, 21, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3227309", async() => {
|
||||
BeginContext(1994, 4, true);
|
||||
WriteLiteral("Alta");
|
||||
EndContext();
|
||||
}
|
||||
@ -316,14 +366,14 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.For = ModelExpressionPro
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1711, 22, true);
|
||||
BeginContext(2007, 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 38 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml"
|
||||
#line 44 "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
|
||||
@ -338,12 +388,12 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvi
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1742, 88, true);
|
||||
BeginContext(2038, 88, true);
|
||||
WriteLiteral("\r\n </div>\r\n <div class=\"text-right\">\r\n ");
|
||||
EndContext();
|
||||
BeginContext(1830, 110, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2026523", async() => {
|
||||
BeginContext(1928, 8, true);
|
||||
BeginContext(2126, 110, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3230194", async() => {
|
||||
BeginContext(2224, 8, true);
|
||||
WriteLiteral("Cancelar");
|
||||
EndContext();
|
||||
}
|
||||
@ -371,7 +421,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvi
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1940, 124, true);
|
||||
BeginContext(2236, 124, true);
|
||||
WriteLiteral("\r\n <button type=\"submit\" class=\"btn btn-primary\">Confirmar</button>\r\n </div>\r\n ");
|
||||
EndContext();
|
||||
}
|
||||
@ -390,7 +440,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvi
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(2071, 40, true);
|
||||
BeginContext(2367, 40, true);
|
||||
WriteLiteral("\r\n </div>\r\n </div>\r\n</section>");
|
||||
EndContext();
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "50d596f248363c09281e8facc9b4e6ba89360ca1"
|
||||
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "cc41d07aec42401ff506df739b3e4b4d780521ac"
|
||||
// <auto-generated/>
|
||||
#pragma warning disable 1591
|
||||
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Desenvolvedores_Form), @"mvc.1.0.view", @"/Views/Desenvolvedores/Form.cshtml")]
|
||||
@ -23,7 +23,7 @@ using GerenciaProjetos.Models;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"50d596f248363c09281e8facc9b4e6ba89360ca1", @"/Views/Desenvolvedores/Form.cshtml")]
|
||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"cc41d07aec42401ff506df739b3e4b4d780521ac", @"/Views/Desenvolvedores/Form.cshtml")]
|
||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
|
||||
public class Views_Desenvolvedores_Form : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<GerenciaProjetos.Models.Desenvolvedor>
|
||||
{
|
||||
@ -90,13 +90,13 @@ Write(ViewData["Title"]);
|
||||
BeginContext(128, 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(230, 1261, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "50d596f248363c09281e8facc9b4e6ba89360ca18672", async() => {
|
||||
BeginContext(230, 1463, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "cc41d07aec42401ff506df739b3e4b4d780521ac8672", async() => {
|
||||
BeginContext(250, 105, true);
|
||||
WriteLiteral("\r\n <div class=\"form-group\">\r\n <label>Nome</label>\r\n ");
|
||||
EndContext();
|
||||
BeginContext(355, 55, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "50d596f248363c09281e8facc9b4e6ba89360ca19164", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "cc41d07aec42401ff506df739b3e4b4d780521ac9164", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
||||
@ -122,7 +122,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
||||
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Email</label>\r\n ");
|
||||
EndContext();
|
||||
BeginContext(540, 57, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "50d596f248363c09281e8facc9b4e6ba89360ca111223", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "cc41d07aec42401ff506df739b3e4b4d780521ac11223", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
||||
@ -148,7 +148,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
||||
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <div class=\"custom-control custom-checkbox\">\r\n ");
|
||||
EndContext();
|
||||
BeginContext(755, 80, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "50d596f248363c09281e8facc9b4e6ba89360ca113314", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "cc41d07aec42401ff506df739b3e4b4d780521ac13314", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
||||
@ -181,7 +181,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
||||
");
|
||||
EndContext();
|
||||
BeginContext(1091, 60, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "50d596f248363c09281e8facc9b4e6ba89360ca115587", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "cc41d07aec42401ff506df739b3e4b4d780521ac15587", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
||||
@ -203,12 +203,38 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1151, 88, true);
|
||||
BeginContext(1151, 133, true);
|
||||
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Confirme</label>\r\n ");
|
||||
EndContext();
|
||||
BeginContext(1284, 69, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "cc41d07aec42401ff506df739b3e4b4d780521ac17653", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_6.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
|
||||
#line 34 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml"
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.ConfirmarSenha);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For, 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(1353, 88, true);
|
||||
WriteLiteral("\r\n </div>\r\n <div class=\"text-right\">\r\n ");
|
||||
EndContext();
|
||||
BeginContext(1239, 121, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "50d596f248363c09281e8facc9b4e6ba89360ca117606", async() => {
|
||||
BeginContext(1348, 8, true);
|
||||
BeginContext(1441, 121, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "cc41d07aec42401ff506df739b3e4b4d780521ac19681", async() => {
|
||||
BeginContext(1550, 8, true);
|
||||
WriteLiteral("Cancelar");
|
||||
EndContext();
|
||||
}
|
||||
@ -236,7 +262,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1360, 124, true);
|
||||
BeginContext(1562, 124, true);
|
||||
WriteLiteral("\r\n <button type=\"submit\" class=\"btn btn-primary\">Confirmar</button>\r\n </div>\r\n ");
|
||||
EndContext();
|
||||
}
|
||||
@ -255,7 +281,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(1491, 40, true);
|
||||
BeginContext(1693, 40, true);
|
||||
WriteLiteral("\r\n </div>\r\n </div>\r\n</section>");
|
||||
EndContext();
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,4 @@
|
||||
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "b179a6474f23cacad7cb452a552cf1fdc0daf46f"
|
||||
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "bcb014c0a7c92cc9a55332289d42c027e2b8d416"
|
||||
// <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", @"b179a6474f23cacad7cb452a552cf1fdc0daf46f", @"/Views/Shared/_Layout.cshtml")]
|
||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"bcb014c0a7c92cc9a55332289d42c027e2b8d416", @"/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>
|
||||
{
|
||||
@ -52,21 +52,22 @@ using GerenciaProjetos.Models;
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_22 = 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_23 = 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_24 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("nav-link"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_25 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("text-decoration-none"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_26 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Privacy", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_27 = 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_28 = 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_29 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", new global::Microsoft.AspNetCore.Html.HtmlString("~/lib/jquery/dist/jquery.js"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_30 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", new global::Microsoft.AspNetCore.Html.HtmlString("~/lib/bootstrap/dist/js/bootstrap.bundle.js"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_31 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_32 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-fallback-src", "~/lib/jquery/dist/jquery.min.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_33 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-fallback-test", "window.jQuery", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_34 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("integrity", new global::Microsoft.AspNetCore.Html.HtmlString("sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_35 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", "https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.bundle.min.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_36 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-fallback-src", "~/lib/bootstrap/dist/js/bootstrap.bundle.min.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_37 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-fallback-test", "window.jQuery && window.jQuery.fn && window.jQuery.fn.modal", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_38 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("integrity", new global::Microsoft.AspNetCore.Html.HtmlString("sha384-xrRywqdh3PHs8keKZN+8zzc5TX0GRTLCcmivcbNJWm2rs5C8PRhcEn3czEjhAO9o"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_39 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", "~/js/site.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_25 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Dashboard", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_26 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("text-decoration-none"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_27 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Privacy", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_28 = 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_29 = 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_30 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", new global::Microsoft.AspNetCore.Html.HtmlString("~/lib/jquery/dist/jquery.js"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_31 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", new global::Microsoft.AspNetCore.Html.HtmlString("~/lib/bootstrap/dist/js/bootstrap.bundle.js"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_32 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_33 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-fallback-src", "~/lib/jquery/dist/jquery.min.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_34 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-fallback-test", "window.jQuery", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_35 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("integrity", new global::Microsoft.AspNetCore.Html.HtmlString("sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_36 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", "https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.bundle.min.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_37 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-fallback-src", "~/lib/bootstrap/dist/js/bootstrap.bundle.min.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_38 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-fallback-test", "window.jQuery && window.jQuery.fn && window.jQuery.fn.modal", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_39 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("integrity", new global::Microsoft.AspNetCore.Html.HtmlString("sha384-xrRywqdh3PHs8keKZN+8zzc5TX0GRTLCcmivcbNJWm2rs5C8PRhcEn3czEjhAO9o"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_40 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", "~/js/site.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||
#line hidden
|
||||
#pragma warning disable 0169
|
||||
private string __tagHelperStringValueBuffer;
|
||||
@ -99,7 +100,7 @@ using GerenciaProjetos.Models;
|
||||
WriteLiteral("<!DOCTYPE html>\r\n<html>\r\n");
|
||||
EndContext();
|
||||
BeginContext(25, 1025, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("head", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f17847", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("head", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41618156", 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 +115,12 @@ using GerenciaProjetos.Models;
|
||||
WriteLiteral(" - TribuFu</title>\r\n\r\n ");
|
||||
EndContext();
|
||||
BeginContext(196, 136, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f18747", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41619056", async() => {
|
||||
BeginContext(231, 10, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(241, 71, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "b179a6474f23cacad7cb452a552cf1fdc0daf46f19165", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "bcb014c0a7c92cc9a55332289d42c027e2b8d41619474", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
|
||||
@ -155,12 +156,12 @@ using GerenciaProjetos.Models;
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(338, 508, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f21657", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41621966", async() => {
|
||||
BeginContext(373, 10, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(383, 443, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "b179a6474f23cacad7cb452a552cf1fdc0daf46f22076", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "bcb014c0a7c92cc9a55332289d42c027e2b8d41622385", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_LinkTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper>();
|
||||
@ -207,7 +208,7 @@ using GerenciaProjetos.Models;
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(852, 69, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "b179a6474f23cacad7cb452a552cf1fdc0daf46f25735", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "bcb014c0a7c92cc9a55332289d42c027e2b8d41626044", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
|
||||
@ -227,7 +228,7 @@ using GerenciaProjetos.Models;
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(927, 61, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "b179a6474f23cacad7cb452a552cf1fdc0daf46f27158", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "bcb014c0a7c92cc9a55332289d42c027e2b8d41627467", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
|
||||
@ -246,7 +247,7 @@ using GerenciaProjetos.Models;
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(994, 47, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "b179a6474f23cacad7cb452a552cf1fdc0daf46f28493", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "bcb014c0a7c92cc9a55332289d42c027e2b8d41628802", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
|
||||
@ -279,18 +280,18 @@ using GerenciaProjetos.Models;
|
||||
BeginContext(1050, 2, true);
|
||||
WriteLiteral("\r\n");
|
||||
EndContext();
|
||||
BeginContext(1052, 7115, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("body", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f30627", async() => {
|
||||
BeginContext(1052, 7321, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("body", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41630936", async() => {
|
||||
BeginContext(1058, 168, true);
|
||||
WriteLiteral("\r\n <header>\r\n <nav class=\"navbar navbar-expand-lg navbar-light bg-light border-bottom box-shadow mb-4\">\r\n <div class=\"container\">\r\n ");
|
||||
EndContext();
|
||||
BeginContext(1226, 233, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f31190", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41631499", async() => {
|
||||
BeginContext(1303, 22, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(1325, 83, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("img", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "b179a6474f23cacad7cb452a552cf1fdc0daf46f31612", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("img", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "bcb014c0a7c92cc9a55332289d42c027e2b8d41631921", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
|
||||
@ -340,7 +341,7 @@ using GerenciaProjetos.Models;
|
||||
");
|
||||
EndContext();
|
||||
BeginContext(1986, 81, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f35377", async() => {
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41635686", async() => {
|
||||
BeginContext(2059, 4, true);
|
||||
WriteLiteral("Home");
|
||||
EndContext();
|
||||
@ -363,7 +364,34 @@ using GerenciaProjetos.Models;
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(2067, 276, true);
|
||||
BeginContext(2067, 115, true);
|
||||
WriteLiteral("\r\n </li>\r\n <li class=\"nav-item active\">\r\n ");
|
||||
EndContext();
|
||||
BeginContext(2182, 91, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41637782", async() => {
|
||||
BeginContext(2260, 9, true);
|
||||
WriteLiteral("Dashboard");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_24);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_21.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_21);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_25.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_25);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_23.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_23);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||
}
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(2273, 276, true);
|
||||
WriteLiteral(@"
|
||||
</li>
|
||||
</ul>
|
||||
@ -377,23 +405,23 @@ using GerenciaProjetos.Models;
|
||||
<main role=""main"" class=""pb-3"">
|
||||
");
|
||||
EndContext();
|
||||
BeginContext(2344, 12, false);
|
||||
#line 47 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
BeginContext(2550, 12, false);
|
||||
#line 50 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
Write(RenderBody());
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
EndContext();
|
||||
BeginContext(2356, 161, true);
|
||||
BeginContext(2562, 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"
|
||||
#line 58 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
if (true)
|
||||
{
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(2572, 330, true);
|
||||
BeginContext(2778, 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>
|
||||
@ -401,21 +429,21 @@ using GerenciaProjetos.Models;
|
||||
</li>
|
||||
");
|
||||
EndContext();
|
||||
#line 62 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
#line 65 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
}
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(2925, 20, true);
|
||||
BeginContext(3131, 20, true);
|
||||
WriteLiteral(" ");
|
||||
EndContext();
|
||||
#line 63 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
#line 66 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
if (true)
|
||||
{
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(2980, 375, true);
|
||||
BeginContext(3186, 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>
|
||||
@ -423,21 +451,21 @@ using GerenciaProjetos.Models;
|
||||
</li>
|
||||
");
|
||||
EndContext();
|
||||
#line 70 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
#line 73 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
}
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(3378, 20, true);
|
||||
BeginContext(3584, 20, true);
|
||||
WriteLiteral(" ");
|
||||
EndContext();
|
||||
#line 71 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
#line 74 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
if (true)
|
||||
{
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(3433, 342, true);
|
||||
BeginContext(3639, 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>
|
||||
@ -445,21 +473,21 @@ using GerenciaProjetos.Models;
|
||||
</li>
|
||||
");
|
||||
EndContext();
|
||||
#line 78 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
#line 81 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
}
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(3798, 20, true);
|
||||
BeginContext(4004, 20, true);
|
||||
WriteLiteral(" ");
|
||||
EndContext();
|
||||
#line 79 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
#line 82 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
if (false)
|
||||
{
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(3854, 300, true);
|
||||
BeginContext(4060, 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>
|
||||
@ -467,21 +495,21 @@ using GerenciaProjetos.Models;
|
||||
</li>
|
||||
");
|
||||
EndContext();
|
||||
#line 86 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
#line 89 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
}
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(4177, 20, true);
|
||||
BeginContext(4383, 20, true);
|
||||
WriteLiteral(" ");
|
||||
EndContext();
|
||||
#line 87 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
#line 90 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
if (false)
|
||||
{
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(4233, 309, true);
|
||||
BeginContext(4439, 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>
|
||||
@ -489,21 +517,21 @@ using GerenciaProjetos.Models;
|
||||
</li>
|
||||
");
|
||||
EndContext();
|
||||
#line 94 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
#line 97 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
}
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(4565, 20, true);
|
||||
BeginContext(4771, 20, true);
|
||||
WriteLiteral(" ");
|
||||
EndContext();
|
||||
#line 95 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
#line 98 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
if (true)
|
||||
{
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(4620, 325, true);
|
||||
BeginContext(4826, 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>
|
||||
@ -511,21 +539,21 @@ using GerenciaProjetos.Models;
|
||||
</li>
|
||||
");
|
||||
EndContext();
|
||||
#line 102 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
#line 105 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
}
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(4968, 20, true);
|
||||
BeginContext(5174, 20, true);
|
||||
WriteLiteral(" ");
|
||||
EndContext();
|
||||
#line 103 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
#line 106 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
if (true)
|
||||
{
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(5023, 339, true);
|
||||
BeginContext(5229, 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>
|
||||
@ -533,21 +561,21 @@ using GerenciaProjetos.Models;
|
||||
</li>
|
||||
");
|
||||
EndContext();
|
||||
#line 110 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
#line 113 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
}
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(5385, 20, true);
|
||||
BeginContext(5591, 20, true);
|
||||
WriteLiteral(" ");
|
||||
EndContext();
|
||||
#line 111 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
#line 114 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
if (true)
|
||||
{
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(5440, 342, true);
|
||||
BeginContext(5646, 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>
|
||||
@ -555,21 +583,21 @@ using GerenciaProjetos.Models;
|
||||
</li>
|
||||
");
|
||||
EndContext();
|
||||
#line 118 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
#line 121 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
}
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(5805, 20, true);
|
||||
BeginContext(6011, 20, true);
|
||||
WriteLiteral(" ");
|
||||
EndContext();
|
||||
#line 119 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
#line 122 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
if (false)
|
||||
{
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(5861, 303, true);
|
||||
BeginContext(6067, 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>
|
||||
@ -577,45 +605,45 @@ using GerenciaProjetos.Models;
|
||||
</li>
|
||||
");
|
||||
EndContext();
|
||||
#line 126 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
#line 129 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
}
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(6187, 23, true);
|
||||
BeginContext(6393, 23, true);
|
||||
WriteLiteral(" </ul>\r\n");
|
||||
EndContext();
|
||||
#line 128 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
#line 131 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
if (true)
|
||||
{
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(6257, 156, true);
|
||||
BeginContext(6463, 156, true);
|
||||
WriteLiteral(" <ul class=\"list-inline\" style=\"margin-bottom:0em;\">\r\n <li class=\"list-inline-item\">\r\n ");
|
||||
EndContext();
|
||||
BeginContext(6413, 118, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f47091", async() => {
|
||||
BeginContext(6516, 11, true);
|
||||
BeginContext(6619, 118, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41649501", async() => {
|
||||
BeginContext(6722, 11, true);
|
||||
WriteLiteral("Privacidade");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_25);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_26);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_21.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_21);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_22.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_22);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_26.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_26);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_27.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_27);
|
||||
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_27.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_27);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_28.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_28);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
@ -624,31 +652,31 @@ using GerenciaProjetos.Models;
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(6531, 116, true);
|
||||
BeginContext(6737, 116, true);
|
||||
WriteLiteral("\r\n </li>\r\n <li class=\"list-inline-item\">\r\n ");
|
||||
EndContext();
|
||||
BeginContext(6647, 111, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f49733", async() => {
|
||||
BeginContext(6743, 11, true);
|
||||
BeginContext(6853, 111, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41652143", async() => {
|
||||
BeginContext(6949, 11, true);
|
||||
WriteLiteral("Contate Nos");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_25);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_26);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_21.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_21);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_22.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_22);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_28.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_28);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_29.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_29);
|
||||
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_27.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_27);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_28.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_28);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
@ -657,52 +685,34 @@ using GerenciaProjetos.Models;
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(6758, 130, true);
|
||||
BeginContext(6964, 130, true);
|
||||
WriteLiteral("\r\n </li>\r\n </ul>\r\n <small style=\"color:#8d9aa6;\">Copyright © TribuFu ");
|
||||
EndContext();
|
||||
BeginContext(6889, 17, false);
|
||||
#line 138 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
BeginContext(7095, 17, false);
|
||||
#line 141 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
Write(DateTime.Now.Year);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
EndContext();
|
||||
BeginContext(6906, 10, true);
|
||||
BeginContext(7112, 10, true);
|
||||
WriteLiteral("</small>\r\n");
|
||||
EndContext();
|
||||
#line 139 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
#line 142 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
}
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
BeginContext(6935, 57, true);
|
||||
BeginContext(7141, 57, true);
|
||||
WriteLiteral(" </div>\r\n </div>\r\n </footer>\r\n\r\n ");
|
||||
EndContext();
|
||||
BeginContext(6992, 193, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f53154", async() => {
|
||||
BeginContext(7027, 10, true);
|
||||
BeginContext(7198, 193, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41655564", async() => {
|
||||
BeginContext(7233, 10, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(7037, 51, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f53574", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_29);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||
}
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(7088, 10, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(7098, 67, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f54908", async() => {
|
||||
BeginContext(7243, 51, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41655984", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
|
||||
@ -716,7 +726,25 @@ using GerenciaProjetos.Models;
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(7165, 6, true);
|
||||
BeginContext(7294, 10, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(7304, 67, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41657318", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_31);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||
}
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(7371, 6, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
}
|
||||
@ -733,31 +761,31 @@ using GerenciaProjetos.Models;
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(7185, 6, true);
|
||||
BeginContext(7391, 6, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(7191, 849, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f57321", async() => {
|
||||
BeginContext(7226, 10, true);
|
||||
BeginContext(7397, 849, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41659731", async() => {
|
||||
BeginContext(7432, 10, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(7236, 340, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f57742", async() => {
|
||||
BeginContext(7557, 10, true);
|
||||
BeginContext(7442, 340, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41660152", async() => {
|
||||
BeginContext(7763, 10, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.Src = (string)__tagHelperAttribute_31.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_31);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.FallbackSrc = (string)__tagHelperAttribute_32.Value;
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.Src = (string)__tagHelperAttribute_32.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_32);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.FallbackTestExpression = (string)__tagHelperAttribute_33.Value;
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.FallbackSrc = (string)__tagHelperAttribute_33.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_33);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.FallbackTestExpression = (string)__tagHelperAttribute_34.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_34);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_8);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_34);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_35);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
@ -766,26 +794,26 @@ using GerenciaProjetos.Models;
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(7576, 10, true);
|
||||
BeginContext(7782, 10, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(7586, 434, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f59956", async() => {
|
||||
BeginContext(8001, 10, true);
|
||||
BeginContext(7792, 434, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41662366", async() => {
|
||||
BeginContext(8207, 10, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.Src = (string)__tagHelperAttribute_35.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_35);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.FallbackSrc = (string)__tagHelperAttribute_36.Value;
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.Src = (string)__tagHelperAttribute_36.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_36);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.FallbackTestExpression = (string)__tagHelperAttribute_37.Value;
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.FallbackSrc = (string)__tagHelperAttribute_37.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_37);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.FallbackTestExpression = (string)__tagHelperAttribute_38.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_38);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_8);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_38);
|
||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_39);
|
||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||
{
|
||||
@ -794,7 +822,7 @@ using GerenciaProjetos.Models;
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(8020, 6, true);
|
||||
BeginContext(8226, 6, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
}
|
||||
@ -811,20 +839,20 @@ using GerenciaProjetos.Models;
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(8040, 6, true);
|
||||
BeginContext(8246, 6, true);
|
||||
WriteLiteral("\r\n ");
|
||||
EndContext();
|
||||
BeginContext(8046, 62, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f63249", async() => {
|
||||
BeginContext(8252, 62, false);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41665659", async() => {
|
||||
}
|
||||
);
|
||||
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper>();
|
||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper);
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.Src = (string)__tagHelperAttribute_39.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_39);
|
||||
#line 162 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.Src = (string)__tagHelperAttribute_40.Value;
|
||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_40);
|
||||
#line 165 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.AppendVersion = true;
|
||||
|
||||
#line default
|
||||
@ -838,17 +866,17 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.AppendVersion = true;
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(8108, 8, true);
|
||||
BeginContext(8314, 8, true);
|
||||
WriteLiteral("\r\n\r\n ");
|
||||
EndContext();
|
||||
BeginContext(8117, 41, false);
|
||||
#line 164 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
BeginContext(8323, 41, false);
|
||||
#line 167 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml"
|
||||
Write(RenderSection("Scripts", required: false));
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
EndContext();
|
||||
BeginContext(8158, 2, true);
|
||||
BeginContext(8364, 2, true);
|
||||
WriteLiteral("\r\n");
|
||||
EndContext();
|
||||
}
|
||||
@ -863,7 +891,7 @@ Write(RenderSection("Scripts", required: false));
|
||||
Write(__tagHelperExecutionContext.Output);
|
||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||
EndContext();
|
||||
BeginContext(8167, 11, true);
|
||||
BeginContext(8373, 11, true);
|
||||
WriteLiteral("\r\n</html>\r\n");
|
||||
EndContext();
|
||||
}
|
||||
|
Reference in New Issue
Block a user