mirror of
https://github.com/guilhermewerner/gerencia-projetos
synced 2025-06-16 06:55:00 +00:00
Requisitos Controller
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -17,7 +17,7 @@ namespace GerenciaProjetos.Controllers
|
|||||||
{
|
{
|
||||||
this.ctx = ctx;
|
this.ctx = ctx;
|
||||||
|
|
||||||
Desenvolvedor dev = ctx.Desenvolvedores.Find(1);
|
Requisito dev = ctx.Requisitos.Find(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
public IActionResult Index()
|
public IActionResult Index()
|
||||||
|
@ -9,15 +9,13 @@ using GerenciaContext = GerenciaProjetos.Data.GerenciaContext;
|
|||||||
|
|
||||||
namespace GerenciaProjetos.Controllers
|
namespace GerenciaProjetos.Controllers
|
||||||
{
|
{
|
||||||
public class DesenvolvedorController : Controller
|
public class DesenvolvedoresController : Controller
|
||||||
{
|
{
|
||||||
private GerenciaContext ctx;
|
private GerenciaContext ctx;
|
||||||
|
|
||||||
public DesenvolvedorController(GerenciaContext ctx)
|
public DesenvolvedoresController(GerenciaContext ctx)
|
||||||
{
|
{
|
||||||
this.ctx = ctx;
|
this.ctx = ctx;
|
||||||
|
|
||||||
Desenvolvedor dev = ctx.Desenvolvedores.Find(1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public IActionResult Index()
|
public IActionResult Index()
|
||||||
@ -29,6 +27,8 @@ namespace GerenciaProjetos.Controllers
|
|||||||
|
|
||||||
public IActionResult New()
|
public IActionResult New()
|
||||||
{
|
{
|
||||||
|
ViewData["Title"] = "Novo";
|
||||||
|
|
||||||
return View("Form");
|
return View("Form");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -50,6 +50,8 @@ namespace GerenciaProjetos.Controllers
|
|||||||
|
|
||||||
public IActionResult Edit(int id)
|
public IActionResult Edit(int id)
|
||||||
{
|
{
|
||||||
|
ViewData["Title"] = "Editar";
|
||||||
|
|
||||||
Desenvolvedor dev = ctx.Desenvolvedores.Find(id);
|
Desenvolvedor dev = ctx.Desenvolvedores.Find(id);
|
||||||
|
|
||||||
if (dev != null)
|
if (dev != null)
|
@ -16,14 +16,13 @@ namespace GerenciaProjetos.Controllers
|
|||||||
public HomeController(GerenciaContext ctx)
|
public HomeController(GerenciaContext ctx)
|
||||||
{
|
{
|
||||||
this.ctx = ctx;
|
this.ctx = ctx;
|
||||||
|
|
||||||
Desenvolvedor dev = ctx.Desenvolvedores.Find(1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public IActionResult Index()
|
public IActionResult Index()
|
||||||
{
|
{
|
||||||
ViewBag.Desenvolvedores = ctx.Desenvolvedores;
|
ViewBag.Desenvolvedores = ctx.Desenvolvedores;
|
||||||
ViewBag.Projetos = ctx.Projetos;
|
ViewBag.Projetos = ctx.Projetos;
|
||||||
|
ViewBag.Requisitos = ctx.Requisitos;
|
||||||
|
|
||||||
return View();
|
return View();
|
||||||
}
|
}
|
||||||
|
@ -16,8 +16,6 @@ namespace GerenciaProjetos.Controllers
|
|||||||
public ProjetosController(GerenciaContext ctx)
|
public ProjetosController(GerenciaContext ctx)
|
||||||
{
|
{
|
||||||
this.ctx = ctx;
|
this.ctx = ctx;
|
||||||
|
|
||||||
Desenvolvedor dev = ctx.Desenvolvedores.Find(1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public IActionResult Index()
|
public IActionResult Index()
|
||||||
@ -29,6 +27,8 @@ namespace GerenciaProjetos.Controllers
|
|||||||
|
|
||||||
public IActionResult New()
|
public IActionResult New()
|
||||||
{
|
{
|
||||||
|
ViewData["Title"] = "Novo";
|
||||||
|
|
||||||
return View("Form");
|
return View("Form");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -50,6 +50,8 @@ namespace GerenciaProjetos.Controllers
|
|||||||
|
|
||||||
public IActionResult Edit(int id)
|
public IActionResult Edit(int id)
|
||||||
{
|
{
|
||||||
|
ViewData["Title"] = "Editar";
|
||||||
|
|
||||||
Projeto proj = ctx.Projetos.Find(id);
|
Projeto proj = ctx.Projetos.Find(id);
|
||||||
|
|
||||||
if (proj != null)
|
if (proj != null)
|
||||||
|
@ -6,6 +6,7 @@ using System.Threading.Tasks;
|
|||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using GerenciaProjetos.Models;
|
using GerenciaProjetos.Models;
|
||||||
using GerenciaContext = GerenciaProjetos.Data.GerenciaContext;
|
using GerenciaContext = GerenciaProjetos.Data.GerenciaContext;
|
||||||
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||||
|
|
||||||
namespace GerenciaProjetos.Controllers
|
namespace GerenciaProjetos.Controllers
|
||||||
{
|
{
|
||||||
@ -16,13 +17,100 @@ namespace GerenciaProjetos.Controllers
|
|||||||
public RequisitosController(GerenciaContext ctx)
|
public RequisitosController(GerenciaContext ctx)
|
||||||
{
|
{
|
||||||
this.ctx = ctx;
|
this.ctx = ctx;
|
||||||
|
|
||||||
Desenvolvedor dev = ctx.Desenvolvedores.Find(1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public IActionResult Index()
|
public IActionResult Index()
|
||||||
{
|
{
|
||||||
|
ViewBag.Requisitos = ctx.Requisitos;
|
||||||
|
|
||||||
return View();
|
return View();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public IActionResult New()
|
||||||
|
{
|
||||||
|
ViewData["Title"] = "Novo";
|
||||||
|
|
||||||
|
ViewBag.Projetos = ctx.Projetos.OrderBy(p => p.Nome).Select(p => new SelectListItem
|
||||||
|
{
|
||||||
|
Text = p.Nome,
|
||||||
|
Value = p.Id.ToString()
|
||||||
|
});
|
||||||
|
|
||||||
|
return View("Form");
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpPost]
|
||||||
|
public IActionResult New(Requisito req)
|
||||||
|
{
|
||||||
|
if (ModelState.IsValid)
|
||||||
|
{
|
||||||
|
req.DataCadastro = DateTime.Now;
|
||||||
|
|
||||||
|
ctx.Requisitos.Add(req);
|
||||||
|
ctx.SaveChanges();
|
||||||
|
|
||||||
|
return RedirectToAction("Index", "Home");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return View("Form", req);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public IActionResult Edit(int id)
|
||||||
|
{
|
||||||
|
ViewData["Title"] = "Editar";
|
||||||
|
|
||||||
|
ViewBag.Projetos = ctx.Projetos.OrderBy(p => p.Nome).Select(p => new SelectListItem
|
||||||
|
{
|
||||||
|
Text = p.Nome,
|
||||||
|
Value = p.Id.ToString()
|
||||||
|
});
|
||||||
|
|
||||||
|
Requisito req = ctx.Requisitos.Find(id);
|
||||||
|
|
||||||
|
if (req != null)
|
||||||
|
{
|
||||||
|
return View("Form", req);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return RedirectToAction("Index", "Home");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpPost]
|
||||||
|
[ValidateAntiForgeryToken]
|
||||||
|
public IActionResult Edit(Requisito req)
|
||||||
|
{
|
||||||
|
if (ModelState.IsValid)
|
||||||
|
{
|
||||||
|
ctx.Entry(req).Property(r => r.Descricao).IsModified = true;
|
||||||
|
ctx.Entry(req).Property(r => r.Observacoes).IsModified = true;
|
||||||
|
ctx.Entry(req).Property(r => r.ProjetoId).IsModified = true;
|
||||||
|
ctx.Entry(req).Property(r => r.DataEntrega).IsModified = true;
|
||||||
|
|
||||||
|
ctx.SaveChanges();
|
||||||
|
|
||||||
|
return RedirectToAction("Index", "Home");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return View("Form", req);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public IActionResult Del(int id)
|
||||||
|
{
|
||||||
|
Requisito req = ctx.Requisitos.Find(id);
|
||||||
|
|
||||||
|
if (req != null)
|
||||||
|
{
|
||||||
|
ctx.Requisitos.Remove(req);
|
||||||
|
ctx.SaveChanges();
|
||||||
|
}
|
||||||
|
|
||||||
|
return RedirectToAction("Index", "Home");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -10,7 +10,7 @@ namespace GerenciaProjetos.Models
|
|||||||
public class Bug
|
public class Bug
|
||||||
{
|
{
|
||||||
public int DesenvolvedorId { get; set; }
|
public int DesenvolvedorId { get; set; }
|
||||||
public Desenvolvedor Desenvolvedor { get; set; }
|
public Requisito Desenvolvedor { get; set; }
|
||||||
|
|
||||||
public int RequisitoId { get; set; }
|
public int RequisitoId { get; set; }
|
||||||
public Requisito Requisito { get; set; }
|
public Requisito Requisito { get; set; }
|
||||||
@ -20,7 +20,7 @@ namespace GerenciaProjetos.Models
|
|||||||
public DateTime DataCadastro { get; set; }
|
public DateTime DataCadastro { get; set; }
|
||||||
|
|
||||||
public int CriadorId { get; set; }
|
public int CriadorId { get; set; }
|
||||||
public Desenvolvedor Criador { get; set; }
|
public Requisito Criador { get; set; }
|
||||||
|
|
||||||
public bool FoiResolvido { get; set; }
|
public bool FoiResolvido { get; set; }
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,7 @@ namespace GerenciaProjetos.Models
|
|||||||
public class DesenvolvedorProjeto
|
public class DesenvolvedorProjeto
|
||||||
{
|
{
|
||||||
public int DesenvolvedorId { get; set; }
|
public int DesenvolvedorId { get; set; }
|
||||||
public Desenvolvedor Desenvolvedor { get; set; }
|
public Requisito Desenvolvedor { get; set; }
|
||||||
|
|
||||||
public int ProjetoId { get; set; }
|
public int ProjetoId { get; set; }
|
||||||
public Projeto Projeto { get; set; }
|
public Projeto Projeto { get; set; }
|
||||||
|
@ -10,7 +10,7 @@ namespace GerenciaProjetos.Models
|
|||||||
public class DesenvolvedorRequisito
|
public class DesenvolvedorRequisito
|
||||||
{
|
{
|
||||||
public int DesenvolvedorId { get; set; }
|
public int DesenvolvedorId { get; set; }
|
||||||
public Desenvolvedor Desenvolvedor { get; set; }
|
public Requisito Desenvolvedor { get; set; }
|
||||||
|
|
||||||
public int RequisitoId { get; set; }
|
public int RequisitoId { get; set; }
|
||||||
public Requisito Requisito { get; set; }
|
public Requisito Requisito { get; set; }
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
|
|
||||||
@{
|
@{
|
||||||
ViewData["Title"] = "Novo Desenvolvedor";
|
|
||||||
Layout = "~/Views/Shared/_Layout.cshtml";
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
}
|
}
|
||||||
|
|
||||||
@model GerenciaProjetos.Models.Desenvolvedor
|
@model GerenciaProjetos.Models.Desenvolvedor
|
||||||
|
|
||||||
<h3>@ViewData["Title"]</h3>
|
<h3>@ViewData["Title"]</h3>
|
||||||
<p>Subtitulo.</p>
|
|
||||||
|
|
||||||
<section class="py-3">
|
<section class="py-3">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
@ -26,7 +24,7 @@
|
|||||||
<input type="password" class="form-control" asp-for="Senha">
|
<input type="password" class="form-control" asp-for="Senha">
|
||||||
</div>
|
</div>
|
||||||
<div class="text-right">
|
<div class="text-right">
|
||||||
<a class="btn btn-secondary" asp-area="" asp-controller="Desenvolvedor" asp-action="Index" asp-route-id="">Cancelar</a>
|
<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>
|
<button type="submit" class="btn btn-primary">Confirmar</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
@ -5,7 +5,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
<h3>@ViewData["Title"]</h3>
|
<h3>@ViewData["Title"]</h3>
|
||||||
<p>Subtitulo.</p>
|
|
||||||
|
|
||||||
<section class="py-3">
|
<section class="py-3">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
@ -16,7 +15,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
<div class="text-right">
|
<div class="text-right">
|
||||||
<a asp-area="" asp-controller="Desenvolvedor" asp-action="New">
|
<a asp-area="" asp-controller="Desenvolvedores" asp-action="New">
|
||||||
<i class="fas fa-plus-circle"></i>
|
<i class="fas fa-plus-circle"></i>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
@ -51,10 +50,10 @@
|
|||||||
}
|
}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a asp-area="" asp-controller="Desenvolvedor" asp-action="Edit" asp-route-id="@d.Id">
|
<a asp-area="" asp-controller="Desenvolvedores" asp-action="Edit" asp-route-id="@d.Id">
|
||||||
<i class="fas fa-edit"></i>
|
<i class="fas fa-edit"></i>
|
||||||
</a>
|
</a>
|
||||||
<a asp-area="" asp-controller="Desenvolvedor" asp-action="Del" asp-route-id="@d.Id">
|
<a asp-area="" asp-controller="Desenvolvedores" asp-action="Del" asp-route-id="@d.Id">
|
||||||
<i class="fas fa-trash"></i>
|
<i class="fas fa-trash"></i>
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
@ -3,18 +3,17 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
<h3>@ViewData["Title"]</h3>
|
<h3>@ViewData["Title"]</h3>
|
||||||
<p>Subtitulo.</p>
|
|
||||||
|
|
||||||
<section class="py-3">
|
<section class="py-3">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
<a class="text-decoration-none" asp-area="" asp-controller="Desenvolvedor" asp-action="Index">Desenvolvedores</a>
|
<a class="text-decoration-none" asp-area="" asp-controller="Desenvolvedores" asp-action="Index">Desenvolvedores</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
<div class="text-right">
|
<div class="text-right">
|
||||||
<a asp-area="" asp-controller="Desenvolvedor" asp-action="New">
|
<a asp-area="" asp-controller="Desenvolvedores" asp-action="New">
|
||||||
<i class="fas fa-plus-circle"></i>
|
<i class="fas fa-plus-circle"></i>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
@ -49,10 +48,10 @@
|
|||||||
}
|
}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a asp-area="" asp-controller="Desenvolvedor" asp-action="Edit" asp-route-id="@d.Id">
|
<a asp-area="" asp-controller="Desenvolvedores" asp-action="Edit" asp-route-id="@d.Id">
|
||||||
<i class="fas fa-edit"></i>
|
<i class="fas fa-edit"></i>
|
||||||
</a>
|
</a>
|
||||||
<a asp-area="" asp-controller="Desenvolvedor" asp-action="Del" asp-route-id="@d.Id">
|
<a asp-area="" asp-controller="Desenvolvedores" asp-action="Del" asp-route-id="@d.Id">
|
||||||
<i class="fas fa-trash"></i>
|
<i class="fas fa-trash"></i>
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
@ -117,11 +116,11 @@
|
|||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
Requisitos
|
<a class="text-decoration-none" asp-area="" asp-controller="Requisitos" asp-action="Index">Requisitos</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
<div class="text-right">
|
<div class="text-right">
|
||||||
<a asp-area="" asp-controller="Home" asp-action="Index">
|
<a asp-area="" asp-controller="Requisitos" asp-action="New">
|
||||||
<i class="fas fa-plus-circle"></i>
|
<i class="fas fa-plus-circle"></i>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
@ -134,25 +133,30 @@
|
|||||||
<th scope="col">#</th>
|
<th scope="col">#</th>
|
||||||
<th scope="col">Descrição</th>
|
<th scope="col">Descrição</th>
|
||||||
<th scope="col">Observações</th>
|
<th scope="col">Observações</th>
|
||||||
|
<th scope="col">Data de Cadastro</th>
|
||||||
<th scope="col">Data de Entrega</th>
|
<th scope="col">Data de Entrega</th>
|
||||||
<th scope="col">Opções</th>
|
<th scope="col">Opções</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
@foreach (Requisito r in ViewBag.Requisitos)
|
||||||
<td>1</td>
|
{
|
||||||
<td>Guilherme</td>
|
<tr>
|
||||||
<td>Abril</td>
|
<td>@r.Id</td>
|
||||||
<td>Kewin</td>
|
<td>@r.Descricao</td>
|
||||||
<td>
|
<td>@r.Observacoes</td>
|
||||||
<a asp-area="" asp-controller="Home" asp-action="" asp-route-id="u.Id">
|
<td>@r.DataCadastro</td>
|
||||||
<i class="fas fa-edit"></i>
|
<td>@r.DataEntrega</td>
|
||||||
</a>
|
<td>
|
||||||
<a asp-area="" asp-controller="Home" asp-action="" asp-route-id="u.Id">
|
<a asp-area="" asp-controller="Requisitos" asp-action="Edit" asp-route-id="@r.Id">
|
||||||
<i class="fas fa-trash"></i>
|
<i class="fas fa-edit"></i>
|
||||||
</a>
|
</a>
|
||||||
</td>
|
<a asp-area="" asp-controller="Requisitos" asp-action="Del" asp-route-id="@r.Id">
|
||||||
</tr>
|
<i class="fas fa-trash"></i>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
<h3>@ViewData["Title"]</h3>
|
<h3>@ViewData["Title"]</h3>
|
||||||
<p>Use this page to detail your site's privacy policy.</p>
|
|
||||||
|
|
||||||
<section class="py-3">
|
<section class="py-3">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
|
|
||||||
@{
|
@{
|
||||||
ViewData["Title"] = "Novo Projeto";
|
|
||||||
Layout = "~/Views/Shared/_Layout.cshtml";
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
}
|
}
|
||||||
|
|
||||||
@model GerenciaProjetos.Models.Projeto
|
@model GerenciaProjetos.Models.Projeto
|
||||||
|
|
||||||
<h3>@ViewData["Title"]</h3>
|
<h3>@ViewData["Title"]</h3>
|
||||||
<p>Subtitulo.</p>
|
|
||||||
|
|
||||||
<section class="py-3">
|
<section class="py-3">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
<h3>@ViewData["Title"]</h3>
|
<h3>@ViewData["Title"]</h3>
|
||||||
<p>Subtitulo.</p>
|
|
||||||
|
|
||||||
<section class="py-3">
|
<section class="py-3">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
|
39
GerenciaProjetos/Views/Requisitos/Form.cshtml
Normal file
39
GerenciaProjetos/Views/Requisitos/Form.cshtml
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
|
||||||
|
@{
|
||||||
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
|
}
|
||||||
|
|
||||||
|
@model GerenciaProjetos.Models.Requisito
|
||||||
|
|
||||||
|
<h3>@ViewData["Title"]</h3>
|
||||||
|
|
||||||
|
<section class="py-3">
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-body">
|
||||||
|
<form method="post">
|
||||||
|
<div class="form-group">
|
||||||
|
<label>Descrição</label>
|
||||||
|
<textarea class="form-control" rows="5" asp-for="Descricao"></textarea>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label>Observações</label>
|
||||||
|
<textarea class="form-control" rows="5" asp-for="Observacoes"></textarea>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label>Projeto</label>
|
||||||
|
<select asp-for="ProjetoId" class="form-control" asp-items="ViewBag.Projetos">
|
||||||
|
<option></option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label>Data de Entrega</label>
|
||||||
|
<input type="date" class="form-control" asp-for="DataEntrega">
|
||||||
|
</div>
|
||||||
|
<div class="text-right">
|
||||||
|
<a class="btn btn-secondary" asp-area="" asp-controller="Requisitos" asp-action="Index" asp-route-id="">Cancelar</a>
|
||||||
|
<button type="submit" class="btn btn-primary">Confirmar</button>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
58
GerenciaProjetos/Views/Requisitos/Index.cshtml
Normal file
58
GerenciaProjetos/Views/Requisitos/Index.cshtml
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
|
||||||
|
@{
|
||||||
|
ViewData["Title"] = "Requisitos";
|
||||||
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
|
}
|
||||||
|
|
||||||
|
<h3>@ViewData["Title"]</h3>
|
||||||
|
|
||||||
|
<section class="py-3">
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-6">
|
||||||
|
1
|
||||||
|
</div>
|
||||||
|
<div class="col-6">
|
||||||
|
<div class="text-right">
|
||||||
|
<a asp-area="" asp-controller="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">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.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>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
|||||||
3a714c107c0af5d5192b9c3d4223616742a7a19b
|
f5d0e88b6b4776bd7be0e689f2bc3ca5ab84cb30
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
|||||||
ff50667ca31c6dbbd4891735f4fa8424843a1222
|
d3d45ed3bc191b1282a479614317faa09830210d
|
||||||
|
@ -28,7 +28,9 @@ C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcor
|
|||||||
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.dll
|
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.dll
|
||||||
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.pdb
|
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.pdb
|
||||||
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.csproj.CopyComplete
|
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.csproj.CopyComplete
|
||||||
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Desenvolvedor\Form.g.cshtml.cs
|
|
||||||
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Desenvolvedor\Index.g.cshtml.cs
|
|
||||||
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Projetos\Form.g.cshtml.cs
|
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Projetos\Form.g.cshtml.cs
|
||||||
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Projetos\Index.g.cshtml.cs
|
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Projetos\Index.g.cshtml.cs
|
||||||
|
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Requisitos\Form.g.cshtml.cs
|
||||||
|
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Requisitos\Index.g.cshtml.cs
|
||||||
|
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Desenvolvedores\Form.g.cshtml.cs
|
||||||
|
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Desenvolvedores\Index.g.cshtml.cs
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -1,8 +1,8 @@
|
|||||||
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "c79f14d0f2709a2a063def6f4fc2eee89652cc8c"
|
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "250ba0126f92ee886db8b8009c54ab96564e476a"
|
||||||
// <auto-generated/>
|
// <auto-generated/>
|
||||||
#pragma warning disable 1591
|
#pragma warning disable 1591
|
||||||
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Desenvolvedor_Form), @"mvc.1.0.view", @"/Views/Desenvolvedor/Form.cshtml")]
|
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Desenvolvedores_Form), @"mvc.1.0.view", @"/Views/Desenvolvedores/Form.cshtml")]
|
||||||
[assembly:global::Microsoft.AspNetCore.Mvc.Razor.Compilation.RazorViewAttribute(@"/Views/Desenvolvedor/Form.cshtml", typeof(AspNetCore.Views_Desenvolvedor_Form))]
|
[assembly:global::Microsoft.AspNetCore.Mvc.Razor.Compilation.RazorViewAttribute(@"/Views/Desenvolvedores/Form.cshtml", typeof(AspNetCore.Views_Desenvolvedores_Form))]
|
||||||
namespace AspNetCore
|
namespace AspNetCore
|
||||||
{
|
{
|
||||||
#line hidden
|
#line hidden
|
||||||
@ -23,9 +23,9 @@ using GerenciaProjetos.Models;
|
|||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"c79f14d0f2709a2a063def6f4fc2eee89652cc8c", @"/Views/Desenvolvedor/Form.cshtml")]
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"250ba0126f92ee886db8b8009c54ab96564e476a", @"/Views/Desenvolvedores/Form.cshtml")]
|
||||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
|
||||||
public class Views_Desenvolvedor_Form : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<GerenciaProjetos.Models.Desenvolvedor>
|
public class Views_Desenvolvedores_Form : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<GerenciaProjetos.Models.Desenvolvedor>
|
||||||
{
|
{
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("type", "text", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("type", "text", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("form-control"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("form-control"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
@ -33,7 +33,7 @@ using GerenciaProjetos.Models;
|
|||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("type", "password", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("type", "password", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_4 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("btn btn-secondary"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_4 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("btn btn-secondary"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_5 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-area", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_5 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-area", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_6 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Desenvolvedor", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_6 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Desenvolvedores", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_7 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Index", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_7 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Index", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_8 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-route-id", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_8 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-route-id", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_9 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("method", "post", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_9 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("method", "post", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
@ -65,36 +65,35 @@ using GerenciaProjetos.Models;
|
|||||||
BeginContext(0, 2, true);
|
BeginContext(0, 2, true);
|
||||||
WriteLiteral("\r\n");
|
WriteLiteral("\r\n");
|
||||||
EndContext();
|
EndContext();
|
||||||
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Form.cshtml"
|
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml"
|
||||||
|
|
||||||
ViewData["Title"] = "Novo Desenvolvedor";
|
|
||||||
Layout = "~/Views/Shared/_Layout.cshtml";
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
BeginContext(103, 2, true);
|
BeginContext(56, 2, true);
|
||||||
WriteLiteral("\r\n");
|
WriteLiteral("\r\n");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(151, 6, true);
|
BeginContext(104, 6, true);
|
||||||
WriteLiteral("\r\n<h3>");
|
WriteLiteral("\r\n<h3>");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(158, 17, false);
|
BeginContext(111, 17, false);
|
||||||
#line 9 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Form.cshtml"
|
#line 8 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml"
|
||||||
Write(ViewData["Title"]);
|
Write(ViewData["Title"]);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(175, 121, true);
|
BeginContext(128, 102, true);
|
||||||
WriteLiteral("</h3>\r\n<p>Subtitulo.</p>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-body\">\r\n ");
|
WriteLiteral("</h3>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-body\">\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(296, 895, false);
|
BeginContext(230, 897, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "c79f14d0f2709a2a063def6f4fc2eee89652cc8c7718", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "250ba0126f92ee886db8b8009c54ab96564e476a7669", async() => {
|
||||||
BeginContext(316, 105, true);
|
BeginContext(250, 105, true);
|
||||||
WriteLiteral("\r\n <div class=\"form-group\">\r\n <label>Nome</label>\r\n ");
|
WriteLiteral("\r\n <div class=\"form-group\">\r\n <label>Nome</label>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(421, 55, false);
|
BeginContext(355, 55, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "c79f14d0f2709a2a063def6f4fc2eee89652cc8c8210", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "250ba0126f92ee886db8b8009c54ab96564e476a8161", async() => {
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
||||||
@ -102,7 +101,7 @@ Write(ViewData["Title"]);
|
|||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_0.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_0.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
|
||||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
|
||||||
#line 18 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Form.cshtml"
|
#line 16 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml"
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Nome);
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Nome);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
@ -116,11 +115,11 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(476, 130, true);
|
BeginContext(410, 130, true);
|
||||||
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Email</label>\r\n ");
|
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Email</label>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(606, 57, false);
|
BeginContext(540, 57, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "c79f14d0f2709a2a063def6f4fc2eee89652cc8c10267", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "250ba0126f92ee886db8b8009c54ab96564e476a10220", async() => {
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
||||||
@ -128,7 +127,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
|||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_2.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_2.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2);
|
||||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
|
||||||
#line 22 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Form.cshtml"
|
#line 20 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml"
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Email);
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Email);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
@ -142,11 +141,11 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(663, 130, true);
|
BeginContext(597, 130, true);
|
||||||
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Senha</label>\r\n ");
|
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Senha</label>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(793, 60, false);
|
BeginContext(727, 60, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "c79f14d0f2709a2a063def6f4fc2eee89652cc8c12326", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "250ba0126f92ee886db8b8009c54ab96564e476a12281", async() => {
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
||||||
@ -154,7 +153,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
|||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_3.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_3.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3);
|
||||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
|
||||||
#line 26 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Form.cshtml"
|
#line 24 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml"
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Senha);
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Senha);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
@ -168,12 +167,12 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(853, 88, true);
|
BeginContext(787, 88, true);
|
||||||
WriteLiteral("\r\n </div>\r\n <div class=\"text-right\">\r\n ");
|
WriteLiteral("\r\n </div>\r\n <div class=\"text-right\">\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(941, 119, false);
|
BeginContext(875, 121, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "c79f14d0f2709a2a063def6f4fc2eee89652cc8c14341", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "250ba0126f92ee886db8b8009c54ab96564e476a14298", async() => {
|
||||||
BeginContext(1048, 8, true);
|
BeginContext(984, 8, true);
|
||||||
WriteLiteral("Cancelar");
|
WriteLiteral("Cancelar");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -201,7 +200,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1060, 124, true);
|
BeginContext(996, 124, true);
|
||||||
WriteLiteral("\r\n <button type=\"submit\" class=\"btn btn-primary\">Confirmar</button>\r\n </div>\r\n ");
|
WriteLiteral("\r\n <button type=\"submit\" class=\"btn btn-primary\">Confirmar</button>\r\n </div>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -220,7 +219,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1191, 40, true);
|
BeginContext(1127, 40, true);
|
||||||
WriteLiteral("\r\n </div>\r\n </div>\r\n</section>");
|
WriteLiteral("\r\n </div>\r\n </div>\r\n</section>");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
@ -1,8 +1,8 @@
|
|||||||
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "09e1c52fc1e9a1f19f2996eaad5d734e55ca3559"
|
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "977268ee7da0ac6921c4551e1fbffc46fc9dd59a"
|
||||||
// <auto-generated/>
|
// <auto-generated/>
|
||||||
#pragma warning disable 1591
|
#pragma warning disable 1591
|
||||||
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Desenvolvedor_Index), @"mvc.1.0.view", @"/Views/Desenvolvedor/Index.cshtml")]
|
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Desenvolvedores_Index), @"mvc.1.0.view", @"/Views/Desenvolvedores/Index.cshtml")]
|
||||||
[assembly:global::Microsoft.AspNetCore.Mvc.Razor.Compilation.RazorViewAttribute(@"/Views/Desenvolvedor/Index.cshtml", typeof(AspNetCore.Views_Desenvolvedor_Index))]
|
[assembly:global::Microsoft.AspNetCore.Mvc.Razor.Compilation.RazorViewAttribute(@"/Views/Desenvolvedores/Index.cshtml", typeof(AspNetCore.Views_Desenvolvedores_Index))]
|
||||||
namespace AspNetCore
|
namespace AspNetCore
|
||||||
{
|
{
|
||||||
#line hidden
|
#line hidden
|
||||||
@ -23,12 +23,12 @@ using GerenciaProjetos.Models;
|
|||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"09e1c52fc1e9a1f19f2996eaad5d734e55ca3559", @"/Views/Desenvolvedor/Index.cshtml")]
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"977268ee7da0ac6921c4551e1fbffc46fc9dd59a", @"/Views/Desenvolvedores/Index.cshtml")]
|
||||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
|
||||||
public class Views_Desenvolvedor_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
|
public class Views_Desenvolvedores_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
|
||||||
{
|
{
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-area", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-area", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Desenvolvedor", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Desenvolvedores", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_2 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "New", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_2 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "New", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Edit", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Edit", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_4 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Del", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_4 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Del", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
@ -57,7 +57,7 @@ using GerenciaProjetos.Models;
|
|||||||
BeginContext(0, 2, true);
|
BeginContext(0, 2, true);
|
||||||
WriteLiteral("\r\n");
|
WriteLiteral("\r\n");
|
||||||
EndContext();
|
EndContext();
|
||||||
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
|
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml"
|
||||||
|
|
||||||
ViewData["Title"] = "Desenvolvedores";
|
ViewData["Title"] = "Desenvolvedores";
|
||||||
Layout = "~/Views/Shared/_Layout.cshtml";
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
@ -68,15 +68,14 @@ using GerenciaProjetos.Models;
|
|||||||
WriteLiteral("\r\n<h3>");
|
WriteLiteral("\r\n<h3>");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(107, 17, false);
|
BeginContext(107, 17, false);
|
||||||
#line 7 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
|
#line 7 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml"
|
||||||
Write(ViewData["Title"]);
|
Write(ViewData["Title"]);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(124, 333, true);
|
BeginContext(124, 314, true);
|
||||||
WriteLiteral(@"</h3>
|
WriteLiteral(@"</h3>
|
||||||
<p>Subtitulo.</p>
|
|
||||||
|
|
||||||
<section class=""py-3"">
|
<section class=""py-3"">
|
||||||
<div class=""card"">
|
<div class=""card"">
|
||||||
@ -89,9 +88,9 @@ Write(ViewData["Title"]);
|
|||||||
<div class=""text-right"">
|
<div class=""text-right"">
|
||||||
");
|
");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(457, 157, false);
|
BeginContext(438, 159, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "09e1c52fc1e9a1f19f2996eaad5d734e55ca35595798", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "977268ee7da0ac6921c4551e1fbffc46fc9dd59a5799", async() => {
|
||||||
BeginContext(520, 90, true);
|
BeginContext(503, 90, true);
|
||||||
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
|
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -112,7 +111,7 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(614, 517, true);
|
BeginContext(597, 517, true);
|
||||||
WriteLiteral(@"
|
WriteLiteral(@"
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -131,75 +130,75 @@ Write(ViewData["Title"]);
|
|||||||
<tbody>
|
<tbody>
|
||||||
");
|
");
|
||||||
EndContext();
|
EndContext();
|
||||||
#line 37 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
|
#line 36 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml"
|
||||||
foreach (Desenvolvedor d in ViewBag.Desenvolvedores)
|
foreach (Desenvolvedor d in ViewBag.Desenvolvedores)
|
||||||
{
|
{
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
BeginContext(1221, 54, true);
|
BeginContext(1204, 54, true);
|
||||||
WriteLiteral(" <tr>\r\n <td>");
|
WriteLiteral(" <tr>\r\n <td>");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1276, 4, false);
|
BeginContext(1259, 4, false);
|
||||||
#line 40 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
|
#line 39 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml"
|
||||||
Write(d.Id);
|
Write(d.Id);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1280, 35, true);
|
BeginContext(1263, 35, true);
|
||||||
WriteLiteral("</td>\r\n <td>");
|
WriteLiteral("</td>\r\n <td>");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1316, 6, false);
|
BeginContext(1299, 6, false);
|
||||||
#line 41 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
|
#line 40 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml"
|
||||||
Write(d.Nome);
|
Write(d.Nome);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1322, 35, true);
|
BeginContext(1305, 35, true);
|
||||||
WriteLiteral("</td>\r\n <td>");
|
WriteLiteral("</td>\r\n <td>");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1358, 7, false);
|
BeginContext(1341, 7, false);
|
||||||
#line 42 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
|
#line 41 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml"
|
||||||
Write(d.Email);
|
Write(d.Email);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1365, 37, true);
|
BeginContext(1348, 37, true);
|
||||||
WriteLiteral("</td>\r\n <td>\r\n");
|
WriteLiteral("</td>\r\n <td>\r\n");
|
||||||
EndContext();
|
EndContext();
|
||||||
#line 44 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
|
#line 43 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml"
|
||||||
if (d.EAdmin == true)
|
if (d.EAdmin == true)
|
||||||
{
|
{
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
BeginContext(1485, 50, true);
|
BeginContext(1468, 50, true);
|
||||||
WriteLiteral(" <span>Sim</span>\r\n");
|
WriteLiteral(" <span>Sim</span>\r\n");
|
||||||
EndContext();
|
EndContext();
|
||||||
#line 47 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
|
#line 46 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml"
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
BeginContext(1631, 50, true);
|
BeginContext(1614, 50, true);
|
||||||
WriteLiteral(" <span>Não</span>\r\n");
|
WriteLiteral(" <span>Não</span>\r\n");
|
||||||
EndContext();
|
EndContext();
|
||||||
#line 51 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
|
#line 50 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml"
|
||||||
}
|
}
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
BeginContext(1712, 89, true);
|
BeginContext(1695, 89, true);
|
||||||
WriteLiteral(" </td>\r\n <td>\r\n ");
|
WriteLiteral(" </td>\r\n <td>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1801, 180, false);
|
BeginContext(1784, 182, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "09e1c52fc1e9a1f19f2996eaad5d734e55ca355910877", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "977268ee7da0ac6921c4551e1fbffc46fc9dd59a10892", async() => {
|
||||||
BeginContext(1886, 91, true);
|
BeginContext(1871, 91, true);
|
||||||
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
|
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -217,8 +216,8 @@ Write(ViewData["Title"]);
|
|||||||
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||||
}
|
}
|
||||||
BeginWriteTagHelperAttribute();
|
BeginWriteTagHelperAttribute();
|
||||||
#line 54 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
|
#line 53 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml"
|
||||||
WriteLiteral(d.Id);
|
WriteLiteral(d.Id);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
@ -233,12 +232,12 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1981, 30, true);
|
BeginContext(1966, 30, true);
|
||||||
WriteLiteral("\r\n ");
|
WriteLiteral("\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(2011, 180, false);
|
BeginContext(1996, 182, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "09e1c52fc1e9a1f19f2996eaad5d734e55ca355913803", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "977268ee7da0ac6921c4551e1fbffc46fc9dd59a13822", async() => {
|
||||||
BeginContext(2095, 92, true);
|
BeginContext(2082, 92, true);
|
||||||
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
|
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -256,8 +255,8 @@ Write(ViewData["Title"]);
|
|||||||
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||||
}
|
}
|
||||||
BeginWriteTagHelperAttribute();
|
BeginWriteTagHelperAttribute();
|
||||||
#line 57 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
|
#line 56 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml"
|
||||||
WriteLiteral(d.Id);
|
WriteLiteral(d.Id);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
@ -272,15 +271,15 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(2191, 60, true);
|
BeginContext(2178, 60, true);
|
||||||
WriteLiteral("\r\n </td>\r\n </tr>\r\n");
|
WriteLiteral("\r\n </td>\r\n </tr>\r\n");
|
||||||
EndContext();
|
EndContext();
|
||||||
#line 62 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
|
#line 61 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml"
|
||||||
}
|
}
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
BeginContext(2270, 62, true);
|
BeginContext(2257, 62, true);
|
||||||
WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>");
|
WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
@ -1,4 +1,4 @@
|
|||||||
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "46c45f5148502067582e5beac9e49bdbc7ba1d3b"
|
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "debe893e3b231c494c22ff3c4b7fc3a213bac2a2"
|
||||||
// <auto-generated/>
|
// <auto-generated/>
|
||||||
#pragma warning disable 1591
|
#pragma warning disable 1591
|
||||||
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Home_Index), @"mvc.1.0.view", @"/Views/Home/Index.cshtml")]
|
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Home_Index), @"mvc.1.0.view", @"/Views/Home/Index.cshtml")]
|
||||||
@ -23,21 +23,22 @@ using GerenciaProjetos.Models;
|
|||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"46c45f5148502067582e5beac9e49bdbc7ba1d3b", @"/Views/Home/Index.cshtml")]
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"debe893e3b231c494c22ff3c4b7fc3a213bac2a2", @"/Views/Home/Index.cshtml")]
|
||||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
|
||||||
public class Views_Home_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
|
public class Views_Home_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
|
||||||
{
|
{
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("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_0 = 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_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-area", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-area", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_2 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Desenvolvedor", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_2 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Desenvolvedores", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Index", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Index", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_4 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "New", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_4 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "New", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_5 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Edit", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_5 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Edit", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_6 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Del", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_6 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Del", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_7 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Projetos", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_7 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Projetos", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_8 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Home", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_8 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Requisitos", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_9 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_9 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Home", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_10 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-route-id", "u.Id", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_10 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_11 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-route-id", "u.Id", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
#line hidden
|
#line hidden
|
||||||
#pragma warning disable 0169
|
#pragma warning disable 0169
|
||||||
private string __tagHelperStringValueBuffer;
|
private string __tagHelperStringValueBuffer;
|
||||||
@ -76,12 +77,12 @@ Write(ViewData["Title"]);
|
|||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(69, 199, true);
|
BeginContext(69, 180, true);
|
||||||
WriteLiteral("</h3>\r\n<p>Subtitulo.</p>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-header\">\r\n <div class=\"row\">\r\n <div class=\"col-6\">\r\n ");
|
WriteLiteral("</h3>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-header\">\r\n <div class=\"row\">\r\n <div class=\"col-6\">\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(268, 113, false);
|
BeginContext(249, 115, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b7304", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a27595", async() => {
|
||||||
BeginContext(362, 15, true);
|
BeginContext(345, 15, true);
|
||||||
WriteLiteral("Desenvolvedores");
|
WriteLiteral("Desenvolvedores");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -103,12 +104,12 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(381, 133, true);
|
BeginContext(364, 133, true);
|
||||||
WriteLiteral("\r\n </div>\r\n <div class=\"col-6\">\r\n <div class=\"text-right\">\r\n ");
|
WriteLiteral("\r\n </div>\r\n <div class=\"col-6\">\r\n <div class=\"text-right\">\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(514, 157, false);
|
BeginContext(497, 159, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b9316", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a29607", async() => {
|
||||||
BeginContext(577, 90, true);
|
BeginContext(562, 90, true);
|
||||||
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
|
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -129,7 +130,7 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(671, 517, true);
|
BeginContext(656, 517, true);
|
||||||
WriteLiteral(@"
|
WriteLiteral(@"
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -148,75 +149,75 @@ Write(ViewData["Title"]);
|
|||||||
<tbody>
|
<tbody>
|
||||||
");
|
");
|
||||||
EndContext();
|
EndContext();
|
||||||
#line 35 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
#line 34 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
foreach (Desenvolvedor d in ViewBag.Desenvolvedores)
|
foreach (Desenvolvedor d in ViewBag.Desenvolvedores)
|
||||||
{
|
{
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
BeginContext(1278, 54, true);
|
BeginContext(1263, 54, true);
|
||||||
WriteLiteral(" <tr>\r\n <td>");
|
WriteLiteral(" <tr>\r\n <td>");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1333, 4, false);
|
BeginContext(1318, 4, false);
|
||||||
#line 38 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
#line 37 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
Write(d.Id);
|
Write(d.Id);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1337, 35, true);
|
BeginContext(1322, 35, true);
|
||||||
WriteLiteral("</td>\r\n <td>");
|
WriteLiteral("</td>\r\n <td>");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1373, 6, false);
|
BeginContext(1358, 6, false);
|
||||||
#line 39 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
#line 38 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
Write(d.Nome);
|
Write(d.Nome);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1379, 35, true);
|
BeginContext(1364, 35, true);
|
||||||
WriteLiteral("</td>\r\n <td>");
|
WriteLiteral("</td>\r\n <td>");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1415, 7, false);
|
BeginContext(1400, 7, false);
|
||||||
#line 40 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
#line 39 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
Write(d.Email);
|
Write(d.Email);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1422, 37, true);
|
BeginContext(1407, 37, true);
|
||||||
WriteLiteral("</td>\r\n <td>\r\n");
|
WriteLiteral("</td>\r\n <td>\r\n");
|
||||||
EndContext();
|
EndContext();
|
||||||
#line 42 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
#line 41 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
if (d.EAdmin == true)
|
if (d.EAdmin == true)
|
||||||
{
|
{
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
BeginContext(1542, 50, true);
|
BeginContext(1527, 50, true);
|
||||||
WriteLiteral(" <span>Sim</span>\r\n");
|
WriteLiteral(" <span>Sim</span>\r\n");
|
||||||
EndContext();
|
EndContext();
|
||||||
#line 45 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
#line 44 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
BeginContext(1688, 50, true);
|
BeginContext(1673, 50, true);
|
||||||
WriteLiteral(" <span>Não</span>\r\n");
|
WriteLiteral(" <span>Não</span>\r\n");
|
||||||
EndContext();
|
EndContext();
|
||||||
#line 49 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
#line 48 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
}
|
}
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
BeginContext(1769, 89, true);
|
BeginContext(1754, 89, true);
|
||||||
WriteLiteral(" </td>\r\n <td>\r\n ");
|
WriteLiteral(" </td>\r\n <td>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1858, 180, false);
|
BeginContext(1843, 182, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b14332", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a214623", async() => {
|
||||||
BeginContext(1943, 91, true);
|
BeginContext(1930, 91, true);
|
||||||
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
|
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -234,8 +235,8 @@ Write(ViewData["Title"]);
|
|||||||
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||||
}
|
}
|
||||||
BeginWriteTagHelperAttribute();
|
BeginWriteTagHelperAttribute();
|
||||||
#line 52 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
#line 51 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
WriteLiteral(d.Id);
|
WriteLiteral(d.Id);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
@ -250,12 +251,12 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(2038, 30, true);
|
BeginContext(2025, 30, true);
|
||||||
WriteLiteral("\r\n ");
|
WriteLiteral("\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(2068, 180, false);
|
BeginContext(2055, 182, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b17249", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a217542", async() => {
|
||||||
BeginContext(2152, 92, true);
|
BeginContext(2141, 92, true);
|
||||||
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
|
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -273,8 +274,8 @@ Write(ViewData["Title"]);
|
|||||||
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||||
}
|
}
|
||||||
BeginWriteTagHelperAttribute();
|
BeginWriteTagHelperAttribute();
|
||||||
#line 55 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
#line 54 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
WriteLiteral(d.Id);
|
WriteLiteral(d.Id);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
@ -289,20 +290,20 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(2248, 60, true);
|
BeginContext(2237, 60, true);
|
||||||
WriteLiteral("\r\n </td>\r\n </tr>\r\n");
|
WriteLiteral("\r\n </td>\r\n </tr>\r\n");
|
||||||
EndContext();
|
EndContext();
|
||||||
#line 60 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
#line 59 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
}
|
}
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
BeginContext(2327, 237, true);
|
BeginContext(2316, 237, true);
|
||||||
WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-header\">\r\n <div class=\"row\">\r\n <div class=\"col-6\">\r\n ");
|
WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-header\">\r\n <div class=\"row\">\r\n <div class=\"col-6\">\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(2564, 101, false);
|
BeginContext(2553, 101, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b20719", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a221014", async() => {
|
||||||
BeginContext(2653, 8, true);
|
BeginContext(2642, 8, true);
|
||||||
WriteLiteral("Projetos");
|
WriteLiteral("Projetos");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -324,12 +325,12 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(2665, 133, true);
|
BeginContext(2654, 133, true);
|
||||||
WriteLiteral("\r\n </div>\r\n <div class=\"col-6\">\r\n <div class=\"text-right\">\r\n ");
|
WriteLiteral("\r\n </div>\r\n <div class=\"col-6\">\r\n <div class=\"text-right\">\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(2798, 152, false);
|
BeginContext(2787, 152, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b22727", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a223022", async() => {
|
||||||
BeginContext(2856, 90, true);
|
BeginContext(2845, 90, true);
|
||||||
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
|
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -350,7 +351,7 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(2950, 533, true);
|
BeginContext(2939, 533, true);
|
||||||
WriteLiteral(@"
|
WriteLiteral(@"
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -369,58 +370,58 @@ Write(ViewData["Title"]);
|
|||||||
<tbody>
|
<tbody>
|
||||||
");
|
");
|
||||||
EndContext();
|
EndContext();
|
||||||
#line 93 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
#line 92 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
foreach (Projeto p in ViewBag.Projetos)
|
foreach (Projeto p in ViewBag.Projetos)
|
||||||
{
|
{
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
BeginContext(3560, 54, true);
|
BeginContext(3549, 54, true);
|
||||||
WriteLiteral(" <tr>\r\n <td>");
|
WriteLiteral(" <tr>\r\n <td>");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(3615, 4, false);
|
BeginContext(3604, 4, false);
|
||||||
#line 96 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
#line 95 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
Write(p.Id);
|
Write(p.Id);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(3619, 35, true);
|
BeginContext(3608, 35, true);
|
||||||
WriteLiteral("</td>\r\n <td>");
|
WriteLiteral("</td>\r\n <td>");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(3655, 6, false);
|
BeginContext(3644, 6, false);
|
||||||
#line 97 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
#line 96 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
Write(p.Nome);
|
Write(p.Nome);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(3661, 35, true);
|
BeginContext(3650, 35, true);
|
||||||
WriteLiteral("</td>\r\n <td>");
|
WriteLiteral("</td>\r\n <td>");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(3697, 13, false);
|
BeginContext(3686, 13, false);
|
||||||
#line 98 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
#line 97 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
Write(p.DataEntrega);
|
Write(p.DataEntrega);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(3710, 35, true);
|
BeginContext(3699, 35, true);
|
||||||
WriteLiteral("</td>\r\n <td>");
|
WriteLiteral("</td>\r\n <td>");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(3746, 13, false);
|
BeginContext(3735, 13, false);
|
||||||
#line 99 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
#line 98 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
Write(p.Solicitante);
|
Write(p.Solicitante);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(3759, 65, true);
|
BeginContext(3748, 65, true);
|
||||||
WriteLiteral("</td>\r\n <td>\r\n ");
|
WriteLiteral("</td>\r\n <td>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(3824, 175, false);
|
BeginContext(3813, 175, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b27067", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a227362", async() => {
|
||||||
BeginContext(3904, 91, true);
|
BeginContext(3893, 91, true);
|
||||||
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
|
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -438,7 +439,7 @@ Write(ViewData["Title"]);
|
|||||||
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||||
}
|
}
|
||||||
BeginWriteTagHelperAttribute();
|
BeginWriteTagHelperAttribute();
|
||||||
#line 101 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
#line 100 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
WriteLiteral(p.Id);
|
WriteLiteral(p.Id);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
@ -454,12 +455,12 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(3999, 30, true);
|
BeginContext(3988, 30, true);
|
||||||
WriteLiteral("\r\n ");
|
WriteLiteral("\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(4029, 175, false);
|
BeginContext(4018, 175, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b29980", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a230275", async() => {
|
||||||
BeginContext(4108, 92, true);
|
BeginContext(4097, 92, true);
|
||||||
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
|
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -477,7 +478,7 @@ Write(ViewData["Title"]);
|
|||||||
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||||
}
|
}
|
||||||
BeginWriteTagHelperAttribute();
|
BeginWriteTagHelperAttribute();
|
||||||
#line 104 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
#line 103 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
WriteLiteral(p.Id);
|
WriteLiteral(p.Id);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
@ -493,40 +494,27 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(4204, 60, true);
|
BeginContext(4193, 60, true);
|
||||||
WriteLiteral("\r\n </td>\r\n </tr>\r\n");
|
WriteLiteral("\r\n </td>\r\n </tr>\r\n");
|
||||||
EndContext();
|
EndContext();
|
||||||
#line 109 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
#line 108 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
}
|
}
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
BeginContext(4283, 380, true);
|
BeginContext(4272, 237, true);
|
||||||
WriteLiteral(@" </tbody>
|
WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-header\">\r\n <div class=\"row\">\r\n <div class=\"col-6\">\r\n ");
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class=""py-3"">
|
|
||||||
<div class=""card"">
|
|
||||||
<div class=""card-header"">
|
|
||||||
<div class=""row"">
|
|
||||||
<div class=""col-6"">
|
|
||||||
Requisitos
|
|
||||||
</div>
|
|
||||||
<div class=""col-6"">
|
|
||||||
<div class=""text-right"">
|
|
||||||
");
|
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(4663, 150, false);
|
BeginContext(4509, 105, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b33575", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a233742", async() => {
|
||||||
BeginContext(4719, 90, true);
|
BeginContext(4600, 10, true);
|
||||||
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
|
WriteLiteral("Requisitos");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
||||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_8.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_8.Value;
|
||||||
@ -541,7 +529,33 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(4813, 754, true);
|
BeginContext(4614, 133, true);
|
||||||
|
WriteLiteral("\r\n </div>\r\n <div class=\"col-6\">\r\n <div class=\"text-right\">\r\n ");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(4747, 154, false);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a235753", async() => {
|
||||||
|
BeginContext(4807, 90, true);
|
||||||
|
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
|
||||||
|
EndContext();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_8.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_4.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
EndContext();
|
||||||
|
BeginContext(4901, 597, true);
|
||||||
WriteLiteral(@"
|
WriteLiteral(@"
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -553,23 +567,77 @@ Write(ViewData["Title"]);
|
|||||||
<th scope=""col"">#</th>
|
<th scope=""col"">#</th>
|
||||||
<th scope=""col"">Descrição</th>
|
<th scope=""col"">Descrição</th>
|
||||||
<th scope=""col"">Observações</th>
|
<th scope=""col"">Observações</th>
|
||||||
|
<th scope=""col"">Data de Cadastro</th>
|
||||||
<th scope=""col"">Data de Entrega</th>
|
<th scope=""col"">Data de Entrega</th>
|
||||||
<th scope=""col"">Opções</th>
|
<th scope=""col"">Opções</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
");
|
||||||
<td>1</td>
|
|
||||||
<td>Guilherme</td>
|
|
||||||
<td>Abril</td>
|
|
||||||
<td>Kewin</td>
|
|
||||||
<td>
|
|
||||||
");
|
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(5567, 158, false);
|
#line 142 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b36213", async() => {
|
foreach (Requisito r in ViewBag.Requisitos)
|
||||||
BeginContext(5638, 83, true);
|
{
|
||||||
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
BeginContext(5579, 54, true);
|
||||||
|
WriteLiteral(" <tr>\r\n <td>");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(5634, 4, false);
|
||||||
|
#line 145 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
|
Write(r.Id);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
EndContext();
|
||||||
|
BeginContext(5638, 35, true);
|
||||||
|
WriteLiteral("</td>\r\n <td>");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(5674, 11, false);
|
||||||
|
#line 146 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
|
Write(r.Descricao);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
EndContext();
|
||||||
|
BeginContext(5685, 35, true);
|
||||||
|
WriteLiteral("</td>\r\n <td>");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(5721, 13, false);
|
||||||
|
#line 147 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
|
Write(r.Observacoes);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
EndContext();
|
||||||
|
BeginContext(5734, 35, true);
|
||||||
|
WriteLiteral("</td>\r\n <td>");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(5770, 14, false);
|
||||||
|
#line 148 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
|
Write(r.DataCadastro);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
EndContext();
|
||||||
|
BeginContext(5784, 35, true);
|
||||||
|
WriteLiteral("</td>\r\n <td>");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(5820, 13, false);
|
||||||
|
#line 149 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
|
Write(r.DataEntrega);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
EndContext();
|
||||||
|
BeginContext(5833, 65, true);
|
||||||
|
WriteLiteral("</td>\r\n <td>\r\n ");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(5898, 177, false);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a240562", async() => {
|
||||||
|
BeginContext(5980, 91, true);
|
||||||
|
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
@ -579,14 +647,21 @@ Write(ViewData["Title"]);
|
|||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_8.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_8.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_9.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_5.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5);
|
||||||
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
|
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
|
||||||
{
|
{
|
||||||
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||||
}
|
}
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_10.Value;
|
BeginWriteTagHelperAttribute();
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_10);
|
#line 151 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
|
WriteLiteral(r.Id);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
__tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
{
|
{
|
||||||
@ -595,13 +670,13 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(5725, 26, true);
|
BeginContext(6075, 30, true);
|
||||||
WriteLiteral("\r\n ");
|
WriteLiteral("\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(5751, 159, false);
|
BeginContext(6105, 177, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b38614", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a243477", async() => {
|
||||||
BeginContext(5822, 84, true);
|
BeginContext(6186, 92, true);
|
||||||
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
|
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
@ -611,14 +686,21 @@ Write(ViewData["Title"]);
|
|||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_8.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_8.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_9.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
|
||||||
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
|
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
|
||||||
{
|
{
|
||||||
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||||
}
|
}
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_10.Value;
|
BeginWriteTagHelperAttribute();
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_10);
|
#line 154 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
|
WriteLiteral(r.Id);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
__tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
{
|
{
|
||||||
@ -627,11 +709,16 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(5910, 426, true);
|
BeginContext(6282, 60, true);
|
||||||
WriteLiteral(@"
|
WriteLiteral("\r\n </td>\r\n </tr>\r\n");
|
||||||
</td>
|
EndContext();
|
||||||
</tr>
|
#line 159 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
|
||||||
</tbody>
|
}
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
BeginContext(6361, 374, true);
|
||||||
|
WriteLiteral(@" </tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
@ -647,9 +734,9 @@ Write(ViewData["Title"]);
|
|||||||
<div class=""text-right"">
|
<div class=""text-right"">
|
||||||
");
|
");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(6336, 150, false);
|
BeginContext(6735, 150, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b41430", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a247068", async() => {
|
||||||
BeginContext(6392, 90, true);
|
BeginContext(6791, 90, true);
|
||||||
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
|
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -658,8 +745,8 @@ Write(ViewData["Title"]);
|
|||||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_8.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_9.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_3.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_3.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3);
|
||||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
@ -670,7 +757,7 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(6486, 846, true);
|
BeginContext(6885, 846, true);
|
||||||
WriteLiteral(@"
|
WriteLiteral(@"
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -697,9 +784,9 @@ Write(ViewData["Title"]);
|
|||||||
<td>
|
<td>
|
||||||
");
|
");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(7332, 158, false);
|
BeginContext(7731, 158, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b44162", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a249800", async() => {
|
||||||
BeginContext(7403, 83, true);
|
BeginContext(7802, 83, true);
|
||||||
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
|
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -708,16 +795,16 @@ Write(ViewData["Title"]);
|
|||||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_8.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_9.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8);
|
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_9.Value;
|
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_10.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_10);
|
||||||
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
|
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
|
||||||
{
|
{
|
||||||
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||||
}
|
}
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_10.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_11.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_10);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_11);
|
||||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
{
|
{
|
||||||
@ -726,12 +813,12 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(7490, 26, true);
|
BeginContext(7889, 26, true);
|
||||||
WriteLiteral("\r\n ");
|
WriteLiteral("\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(7516, 159, false);
|
BeginContext(7915, 159, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b46563", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a252203", async() => {
|
||||||
BeginContext(7587, 84, true);
|
BeginContext(7986, 84, true);
|
||||||
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
|
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -740,16 +827,16 @@ Write(ViewData["Title"]);
|
|||||||
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_8.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_9.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8);
|
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_9.Value;
|
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_10.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_10);
|
||||||
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
|
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
|
||||||
{
|
{
|
||||||
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||||
}
|
}
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_10.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_11.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_10);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_11);
|
||||||
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
{
|
{
|
||||||
@ -758,7 +845,7 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(7675, 114, true);
|
BeginContext(8074, 114, true);
|
||||||
WriteLiteral("\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n</section>");
|
WriteLiteral("\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n</section>");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Privacy.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "79216859a29078bd81a1adff7bf71a6cd82e6c72"
|
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Privacy.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "d81f8af58dc1b53b9a802441bc5baa45ea7929e1"
|
||||||
// <auto-generated/>
|
// <auto-generated/>
|
||||||
#pragma warning disable 1591
|
#pragma warning disable 1591
|
||||||
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Home_Privacy), @"mvc.1.0.view", @"/Views/Home/Privacy.cshtml")]
|
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Home_Privacy), @"mvc.1.0.view", @"/Views/Home/Privacy.cshtml")]
|
||||||
@ -23,7 +23,7 @@ using GerenciaProjetos.Models;
|
|||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"79216859a29078bd81a1adff7bf71a6cd82e6c72", @"/Views/Home/Privacy.cshtml")]
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"d81f8af58dc1b53b9a802441bc5baa45ea7929e1", @"/Views/Home/Privacy.cshtml")]
|
||||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
|
||||||
public class Views_Home_Privacy : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
|
public class Views_Home_Privacy : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
|
||||||
{
|
{
|
||||||
@ -46,8 +46,8 @@ Write(ViewData["Title"]);
|
|||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(83, 203, true);
|
BeginContext(83, 143, true);
|
||||||
WriteLiteral("</h3>\r\n<p>Use this page to detail your site\'s privacy policy.</p>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-body\">\r\n a\r\n </div>\r\n </div>\r\n</section>");
|
WriteLiteral("</h3>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-body\">\r\n a\r\n </div>\r\n </div>\r\n</section>");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
#pragma warning restore 1998
|
#pragma warning restore 1998
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "8f7c887d3b4ce5d99bf26f32a88cda7a6f87cd59"
|
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "e08b8516c6598186a5f7fd58fd9f7bd8d12aaedd"
|
||||||
// <auto-generated/>
|
// <auto-generated/>
|
||||||
#pragma warning disable 1591
|
#pragma warning disable 1591
|
||||||
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Projetos_Form), @"mvc.1.0.view", @"/Views/Projetos/Form.cshtml")]
|
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Projetos_Form), @"mvc.1.0.view", @"/Views/Projetos/Form.cshtml")]
|
||||||
@ -23,7 +23,7 @@ using GerenciaProjetos.Models;
|
|||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"8f7c887d3b4ce5d99bf26f32a88cda7a6f87cd59", @"/Views/Projetos/Form.cshtml")]
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"e08b8516c6598186a5f7fd58fd9f7bd8d12aaedd", @"/Views/Projetos/Form.cshtml")]
|
||||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
|
||||||
public class Views_Projetos_Form : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<GerenciaProjetos.Models.Projeto>
|
public class Views_Projetos_Form : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<GerenciaProjetos.Models.Projeto>
|
||||||
{
|
{
|
||||||
@ -66,34 +66,33 @@ using GerenciaProjetos.Models;
|
|||||||
EndContext();
|
EndContext();
|
||||||
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml"
|
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml"
|
||||||
|
|
||||||
ViewData["Title"] = "Novo Projeto";
|
|
||||||
Layout = "~/Views/Shared/_Layout.cshtml";
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
BeginContext(97, 2, true);
|
BeginContext(56, 2, true);
|
||||||
WriteLiteral("\r\n");
|
WriteLiteral("\r\n");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(139, 6, true);
|
BeginContext(98, 6, true);
|
||||||
WriteLiteral("\r\n<h3>");
|
WriteLiteral("\r\n<h3>");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(146, 17, false);
|
BeginContext(105, 17, false);
|
||||||
#line 9 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml"
|
#line 8 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml"
|
||||||
Write(ViewData["Title"]);
|
Write(ViewData["Title"]);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(163, 121, true);
|
BeginContext(122, 102, true);
|
||||||
WriteLiteral("</h3>\r\n<p>Subtitulo.</p>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-body\">\r\n ");
|
WriteLiteral("</h3>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-body\">\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(284, 913, false);
|
BeginContext(224, 913, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "8f7c887d3b4ce5d99bf26f32a88cda7a6f87cd597357", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "e08b8516c6598186a5f7fd58fd9f7bd8d12aaedd7294", async() => {
|
||||||
BeginContext(304, 105, true);
|
BeginContext(244, 105, true);
|
||||||
WriteLiteral("\r\n <div class=\"form-group\">\r\n <label>Nome</label>\r\n ");
|
WriteLiteral("\r\n <div class=\"form-group\">\r\n <label>Nome</label>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(409, 55, false);
|
BeginContext(349, 55, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "8f7c887d3b4ce5d99bf26f32a88cda7a6f87cd597849", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "e08b8516c6598186a5f7fd58fd9f7bd8d12aaedd7786", async() => {
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
||||||
@ -101,7 +100,7 @@ Write(ViewData["Title"]);
|
|||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_0.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_0.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
|
||||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
|
||||||
#line 18 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml"
|
#line 16 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml"
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Nome);
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Nome);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
@ -115,11 +114,11 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(464, 140, true);
|
BeginContext(404, 140, true);
|
||||||
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Data de Entrega</label>\r\n ");
|
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Data de Entrega</label>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(604, 62, false);
|
BeginContext(544, 62, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "8f7c887d3b4ce5d99bf26f32a88cda7a6f87cd599911", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "e08b8516c6598186a5f7fd58fd9f7bd8d12aaedd9848", async() => {
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
||||||
@ -127,7 +126,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
|||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_2.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_2.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2);
|
||||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
|
||||||
#line 22 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml"
|
#line 20 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml"
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.DataEntrega);
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.DataEntrega);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
@ -141,11 +140,11 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(666, 136, true);
|
BeginContext(606, 136, true);
|
||||||
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Solicitante</label>\r\n ");
|
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Solicitante</label>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(802, 62, false);
|
BeginContext(742, 62, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "8f7c887d3b4ce5d99bf26f32a88cda7a6f87cd5911976", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "e08b8516c6598186a5f7fd58fd9f7bd8d12aaedd11913", async() => {
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>();
|
||||||
@ -153,7 +152,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
|||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_0.Value;
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_0.Value;
|
||||||
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
|
||||||
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
|
||||||
#line 26 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml"
|
#line 24 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml"
|
||||||
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Solicitante);
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Solicitante);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
@ -167,12 +166,12 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(864, 88, true);
|
BeginContext(804, 88, true);
|
||||||
WriteLiteral("\r\n </div>\r\n <div class=\"text-right\">\r\n ");
|
WriteLiteral("\r\n </div>\r\n <div class=\"text-right\">\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(952, 114, false);
|
BeginContext(892, 114, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "8f7c887d3b4ce5d99bf26f32a88cda7a6f87cd5913992", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "e08b8516c6598186a5f7fd58fd9f7bd8d12aaedd13929", async() => {
|
||||||
BeginContext(1054, 8, true);
|
BeginContext(994, 8, true);
|
||||||
WriteLiteral("Cancelar");
|
WriteLiteral("Cancelar");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -200,7 +199,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1066, 124, true);
|
BeginContext(1006, 124, true);
|
||||||
WriteLiteral("\r\n <button type=\"submit\" class=\"btn btn-primary\">Confirmar</button>\r\n </div>\r\n ");
|
WriteLiteral("\r\n <button type=\"submit\" class=\"btn btn-primary\">Confirmar</button>\r\n </div>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -219,7 +218,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1197, 40, true);
|
BeginContext(1137, 40, true);
|
||||||
WriteLiteral("\r\n </div>\r\n </div>\r\n</section>");
|
WriteLiteral("\r\n </div>\r\n </div>\r\n</section>");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "55c582c3aac181a0376bcba6e12575862f28a504"
|
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "a614933be1258e52312a782921740065f4b2dd2f"
|
||||||
// <auto-generated/>
|
// <auto-generated/>
|
||||||
#pragma warning disable 1591
|
#pragma warning disable 1591
|
||||||
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Projetos_Index), @"mvc.1.0.view", @"/Views/Projetos/Index.cshtml")]
|
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Projetos_Index), @"mvc.1.0.view", @"/Views/Projetos/Index.cshtml")]
|
||||||
@ -23,7 +23,7 @@ using GerenciaProjetos.Models;
|
|||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"55c582c3aac181a0376bcba6e12575862f28a504", @"/Views/Projetos/Index.cshtml")]
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"a614933be1258e52312a782921740065f4b2dd2f", @"/Views/Projetos/Index.cshtml")]
|
||||||
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
|
||||||
public class Views_Projetos_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
|
public class Views_Projetos_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
|
||||||
{
|
{
|
||||||
@ -74,9 +74,8 @@ Write(ViewData["Title"]);
|
|||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(117, 333, true);
|
BeginContext(117, 314, true);
|
||||||
WriteLiteral(@"</h3>
|
WriteLiteral(@"</h3>
|
||||||
<p>Subtitulo.</p>
|
|
||||||
|
|
||||||
<section class=""py-3"">
|
<section class=""py-3"">
|
||||||
<div class=""card"">
|
<div class=""card"">
|
||||||
@ -89,9 +88,9 @@ Write(ViewData["Title"]);
|
|||||||
<div class=""text-right"">
|
<div class=""text-right"">
|
||||||
");
|
");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(450, 152, false);
|
BeginContext(431, 152, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "55c582c3aac181a0376bcba6e12575862f28a5045740", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a614933be1258e52312a782921740065f4b2dd2f5721", async() => {
|
||||||
BeginContext(508, 90, true);
|
BeginContext(489, 90, true);
|
||||||
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
|
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -112,7 +111,7 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(602, 533, true);
|
BeginContext(583, 533, true);
|
||||||
WriteLiteral(@"
|
WriteLiteral(@"
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -131,58 +130,58 @@ Write(ViewData["Title"]);
|
|||||||
<tbody>
|
<tbody>
|
||||||
");
|
");
|
||||||
EndContext();
|
EndContext();
|
||||||
#line 37 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
|
#line 36 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
|
||||||
foreach (Projeto p in ViewBag.Projetos)
|
foreach (Projeto p in ViewBag.Projetos)
|
||||||
{
|
{
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
BeginContext(1212, 54, true);
|
BeginContext(1193, 54, true);
|
||||||
WriteLiteral(" <tr>\r\n <td>");
|
WriteLiteral(" <tr>\r\n <td>");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1267, 4, false);
|
BeginContext(1248, 4, false);
|
||||||
#line 40 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
|
#line 39 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
|
||||||
Write(p.Id);
|
Write(p.Id);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1271, 35, true);
|
BeginContext(1252, 35, true);
|
||||||
WriteLiteral("</td>\r\n <td>");
|
WriteLiteral("</td>\r\n <td>");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1307, 6, false);
|
BeginContext(1288, 6, false);
|
||||||
#line 41 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
|
#line 40 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
|
||||||
Write(p.Nome);
|
Write(p.Nome);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1313, 35, true);
|
BeginContext(1294, 35, true);
|
||||||
WriteLiteral("</td>\r\n <td>");
|
WriteLiteral("</td>\r\n <td>");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1349, 13, false);
|
BeginContext(1330, 13, false);
|
||||||
#line 42 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
|
#line 41 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
|
||||||
Write(p.DataEntrega);
|
Write(p.DataEntrega);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1362, 35, true);
|
BeginContext(1343, 35, true);
|
||||||
WriteLiteral("</td>\r\n <td>");
|
WriteLiteral("</td>\r\n <td>");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1398, 13, false);
|
BeginContext(1379, 13, false);
|
||||||
#line 43 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
|
#line 42 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
|
||||||
Write(p.Solicitante);
|
Write(p.Solicitante);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1411, 65, true);
|
BeginContext(1392, 65, true);
|
||||||
WriteLiteral("</td>\r\n <td>\r\n ");
|
WriteLiteral("</td>\r\n <td>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1476, 175, false);
|
BeginContext(1457, 175, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "55c582c3aac181a0376bcba6e12575862f28a50410097", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a614933be1258e52312a782921740065f4b2dd2f10078", async() => {
|
||||||
BeginContext(1556, 91, true);
|
BeginContext(1537, 91, true);
|
||||||
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
|
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -200,7 +199,7 @@ Write(ViewData["Title"]);
|
|||||||
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||||
}
|
}
|
||||||
BeginWriteTagHelperAttribute();
|
BeginWriteTagHelperAttribute();
|
||||||
#line 45 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
|
#line 44 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
|
||||||
WriteLiteral(p.Id);
|
WriteLiteral(p.Id);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
@ -216,12 +215,12 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1651, 30, true);
|
BeginContext(1632, 30, true);
|
||||||
WriteLiteral("\r\n ");
|
WriteLiteral("\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1681, 175, false);
|
BeginContext(1662, 175, false);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "55c582c3aac181a0376bcba6e12575862f28a50413013", async() => {
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a614933be1258e52312a782921740065f4b2dd2f12994", async() => {
|
||||||
BeginContext(1760, 92, true);
|
BeginContext(1741, 92, true);
|
||||||
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
|
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
@ -239,7 +238,7 @@ Write(ViewData["Title"]);
|
|||||||
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||||
}
|
}
|
||||||
BeginWriteTagHelperAttribute();
|
BeginWriteTagHelperAttribute();
|
||||||
#line 48 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
|
#line 47 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
|
||||||
WriteLiteral(p.Id);
|
WriteLiteral(p.Id);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
@ -255,15 +254,15 @@ Write(ViewData["Title"]);
|
|||||||
Write(__tagHelperExecutionContext.Output);
|
Write(__tagHelperExecutionContext.Output);
|
||||||
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
EndContext();
|
EndContext();
|
||||||
BeginContext(1856, 60, true);
|
BeginContext(1837, 60, true);
|
||||||
WriteLiteral("\r\n </td>\r\n </tr>\r\n");
|
WriteLiteral("\r\n </td>\r\n </tr>\r\n");
|
||||||
EndContext();
|
EndContext();
|
||||||
#line 53 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
|
#line 52 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
|
||||||
}
|
}
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
BeginContext(1935, 62, true);
|
BeginContext(1916, 62, true);
|
||||||
WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>");
|
WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>");
|
||||||
EndContext();
|
EndContext();
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,289 @@
|
|||||||
|
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "62c0ff537a6b2571b047741fc65fef6ec22af908"
|
||||||
|
// <auto-generated/>
|
||||||
|
#pragma warning disable 1591
|
||||||
|
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Requisitos_Form), @"mvc.1.0.view", @"/Views/Requisitos/Form.cshtml")]
|
||||||
|
[assembly:global::Microsoft.AspNetCore.Mvc.Razor.Compilation.RazorViewAttribute(@"/Views/Requisitos/Form.cshtml", typeof(AspNetCore.Views_Requisitos_Form))]
|
||||||
|
namespace AspNetCore
|
||||||
|
{
|
||||||
|
#line hidden
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||||
|
using Microsoft.AspNetCore.Mvc.ViewFeatures;
|
||||||
|
#line 1 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml"
|
||||||
|
using GerenciaProjetos;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml"
|
||||||
|
using GerenciaProjetos.Models;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"62c0ff537a6b2571b047741fc65fef6ec22af908", @"/Views/Requisitos/Form.cshtml")]
|
||||||
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
|
||||||
|
public class Views_Requisitos_Form : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<GerenciaProjetos.Models.Requisito>
|
||||||
|
{
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("form-control"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("rows", new global::Microsoft.AspNetCore.Html.HtmlString("5"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_2 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("type", "date", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("btn btn-secondary"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_4 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-area", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_5 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Requisitos", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_6 = 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_7 = 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_8 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("method", "post", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
#line hidden
|
||||||
|
#pragma warning disable 0169
|
||||||
|
private string __tagHelperStringValueBuffer;
|
||||||
|
#pragma warning restore 0169
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext __tagHelperExecutionContext;
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner __tagHelperRunner = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner();
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __backed__tagHelperScopeManager = null;
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __tagHelperScopeManager
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if (__backed__tagHelperScopeManager == null)
|
||||||
|
{
|
||||||
|
__backed__tagHelperScopeManager = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager(StartTagHelperWritingScope, EndTagHelperWritingScope);
|
||||||
|
}
|
||||||
|
return __backed__tagHelperScopeManager;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper;
|
||||||
|
private global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper;
|
||||||
|
private global::Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper;
|
||||||
|
private global::Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper;
|
||||||
|
private global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper;
|
||||||
|
private global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper;
|
||||||
|
private global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper;
|
||||||
|
#pragma warning disable 1998
|
||||||
|
public async override global::System.Threading.Tasks.Task ExecuteAsync()
|
||||||
|
{
|
||||||
|
BeginContext(0, 2, true);
|
||||||
|
WriteLiteral("\r\n");
|
||||||
|
EndContext();
|
||||||
|
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml"
|
||||||
|
|
||||||
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
BeginContext(56, 2, true);
|
||||||
|
WriteLiteral("\r\n");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(100, 6, true);
|
||||||
|
WriteLiteral("\r\n<h3>");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(107, 17, false);
|
||||||
|
#line 8 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml"
|
||||||
|
Write(ViewData["Title"]);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
EndContext();
|
||||||
|
BeginContext(124, 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(226, 1231, false);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "62c0ff537a6b2571b047741fc65fef6ec22af9087765", async() => {
|
||||||
|
BeginContext(246, 110, true);
|
||||||
|
WriteLiteral("\r\n <div class=\"form-group\">\r\n <label>Descrição</label>\r\n ");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(356, 71, false);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("textarea", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "62c0ff537a6b2571b047741fc65fef6ec22af9088262", 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_1);
|
||||||
|
#line 16 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml"
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Descricao);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.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(427, 136, true);
|
||||||
|
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Observações</label>\r\n ");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(563, 73, false);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("textarea", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "62c0ff537a6b2571b047741fc65fef6ec22af90810221", 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_1);
|
||||||
|
#line 20 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml"
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Observacoes);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.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(636, 132, true);
|
||||||
|
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Projeto</label>\r\n ");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(768, 152, false);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "62c0ff537a6b2571b047741fc65fef6ec22af90812180", async() => {
|
||||||
|
BeginContext(846, 26, true);
|
||||||
|
WriteLiteral("\r\n ");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(872, 17, false);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "62c0ff537a6b2571b047741fc65fef6ec22af90812609", 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(889, 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 24 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml"
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.ProjetoId);
|
||||||
|
|
||||||
|
#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 24 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml"
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Projetos;
|
||||||
|
|
||||||
|
#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(920, 140, true);
|
||||||
|
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Data de Entrega</label>\r\n ");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(1060, 62, false);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "62c0ff537a6b2571b047741fc65fef6ec22af90815854", 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_2.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0);
|
||||||
|
#line 30 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml"
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.DataEntrega);
|
||||||
|
|
||||||
|
#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(1122, 88, true);
|
||||||
|
WriteLiteral("\r\n </div>\r\n <div class=\"text-right\">\r\n ");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(1210, 116, false);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "62c0ff537a6b2571b047741fc65fef6ec22af90817874", async() => {
|
||||||
|
BeginContext(1314, 8, true);
|
||||||
|
WriteLiteral("Cancelar");
|
||||||
|
EndContext();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||||
|
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_3);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_4.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_5.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
|
||||||
|
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
|
||||||
|
{
|
||||||
|
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||||
|
}
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_7.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
EndContext();
|
||||||
|
BeginContext(1326, 124, true);
|
||||||
|
WriteLiteral("\r\n <button type=\"submit\" class=\"btn btn-primary\">Confirmar</button>\r\n </div>\r\n ");
|
||||||
|
EndContext();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Method = (string)__tagHelperAttribute_8.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
EndContext();
|
||||||
|
BeginContext(1457, 40, true);
|
||||||
|
WriteLiteral("\r\n </div>\r\n </div>\r\n</section>");
|
||||||
|
EndContext();
|
||||||
|
}
|
||||||
|
#pragma warning restore 1998
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<GerenciaProjetos.Models.Requisito> Html { get; private set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#pragma warning restore 1591
|
@ -0,0 +1,293 @@
|
|||||||
|
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "70a16f0fc0b05ca7fcad86a13636925bc2e6a5ba"
|
||||||
|
// <auto-generated/>
|
||||||
|
#pragma warning disable 1591
|
||||||
|
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Requisitos_Index), @"mvc.1.0.view", @"/Views/Requisitos/Index.cshtml")]
|
||||||
|
[assembly:global::Microsoft.AspNetCore.Mvc.Razor.Compilation.RazorViewAttribute(@"/Views/Requisitos/Index.cshtml", typeof(AspNetCore.Views_Requisitos_Index))]
|
||||||
|
namespace AspNetCore
|
||||||
|
{
|
||||||
|
#line hidden
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||||
|
using Microsoft.AspNetCore.Mvc.ViewFeatures;
|
||||||
|
#line 1 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml"
|
||||||
|
using GerenciaProjetos;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml"
|
||||||
|
using GerenciaProjetos.Models;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"70a16f0fc0b05ca7fcad86a13636925bc2e6a5ba", @"/Views/Requisitos/Index.cshtml")]
|
||||||
|
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
|
||||||
|
public class Views_Requisitos_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
|
||||||
|
{
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-area", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Requisitos", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_2 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "New", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Edit", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_4 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Del", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
#line hidden
|
||||||
|
#pragma warning disable 0169
|
||||||
|
private string __tagHelperStringValueBuffer;
|
||||||
|
#pragma warning restore 0169
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext __tagHelperExecutionContext;
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner __tagHelperRunner = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner();
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __backed__tagHelperScopeManager = null;
|
||||||
|
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __tagHelperScopeManager
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if (__backed__tagHelperScopeManager == null)
|
||||||
|
{
|
||||||
|
__backed__tagHelperScopeManager = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager(StartTagHelperWritingScope, EndTagHelperWritingScope);
|
||||||
|
}
|
||||||
|
return __backed__tagHelperScopeManager;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper;
|
||||||
|
#pragma warning disable 1998
|
||||||
|
public async override global::System.Threading.Tasks.Task ExecuteAsync()
|
||||||
|
{
|
||||||
|
BeginContext(0, 2, true);
|
||||||
|
WriteLiteral("\r\n");
|
||||||
|
EndContext();
|
||||||
|
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml"
|
||||||
|
|
||||||
|
ViewData["Title"] = "Requisitos";
|
||||||
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
BeginContext(95, 6, true);
|
||||||
|
WriteLiteral("\r\n<h3>");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(102, 17, false);
|
||||||
|
#line 7 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml"
|
||||||
|
Write(ViewData["Title"]);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
EndContext();
|
||||||
|
BeginContext(119, 314, true);
|
||||||
|
WriteLiteral(@"</h3>
|
||||||
|
|
||||||
|
<section class=""py-3"">
|
||||||
|
<div class=""card"">
|
||||||
|
<div class=""card-header"">
|
||||||
|
<div class=""row"">
|
||||||
|
<div class=""col-6"">
|
||||||
|
1
|
||||||
|
</div>
|
||||||
|
<div class=""col-6"">
|
||||||
|
<div class=""text-right"">
|
||||||
|
");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(433, 154, false);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "70a16f0fc0b05ca7fcad86a13636925bc2e6a5ba5743", async() => {
|
||||||
|
BeginContext(493, 90, true);
|
||||||
|
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
|
||||||
|
EndContext();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_2.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
EndContext();
|
||||||
|
BeginContext(587, 597, true);
|
||||||
|
WriteLiteral(@"
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<table class=""table table-borderless table-hover"">
|
||||||
|
<thead class=""border-bottom"">
|
||||||
|
<tr>
|
||||||
|
<th scope=""col"">#</th>
|
||||||
|
<th scope=""col"">Descrição</th>
|
||||||
|
<th scope=""col"">Observações</th>
|
||||||
|
<th scope=""col"">Data de Cadastro</th>
|
||||||
|
<th scope=""col"">Data de Entrega</th>
|
||||||
|
<th scope=""col"">Opções</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
");
|
||||||
|
EndContext();
|
||||||
|
#line 37 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml"
|
||||||
|
foreach (Requisito r in ViewBag.Requisitos)
|
||||||
|
{
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
BeginContext(1265, 54, true);
|
||||||
|
WriteLiteral(" <tr>\r\n <td>");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(1320, 4, false);
|
||||||
|
#line 40 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml"
|
||||||
|
Write(r.Id);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
EndContext();
|
||||||
|
BeginContext(1324, 35, true);
|
||||||
|
WriteLiteral("</td>\r\n <td>");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(1360, 11, false);
|
||||||
|
#line 41 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml"
|
||||||
|
Write(r.Descricao);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
EndContext();
|
||||||
|
BeginContext(1371, 35, true);
|
||||||
|
WriteLiteral("</td>\r\n <td>");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(1407, 13, false);
|
||||||
|
#line 42 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml"
|
||||||
|
Write(r.Observacoes);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
EndContext();
|
||||||
|
BeginContext(1420, 35, true);
|
||||||
|
WriteLiteral("</td>\r\n <td>");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(1456, 14, false);
|
||||||
|
#line 43 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml"
|
||||||
|
Write(r.DataCadastro);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
EndContext();
|
||||||
|
BeginContext(1470, 35, true);
|
||||||
|
WriteLiteral("</td>\r\n <td>");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(1506, 13, false);
|
||||||
|
#line 44 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml"
|
||||||
|
Write(r.DataEntrega);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
EndContext();
|
||||||
|
BeginContext(1519, 65, true);
|
||||||
|
WriteLiteral("</td>\r\n <td>\r\n ");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(1584, 177, false);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "70a16f0fc0b05ca7fcad86a13636925bc2e6a5ba10579", async() => {
|
||||||
|
BeginContext(1666, 91, true);
|
||||||
|
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
|
||||||
|
EndContext();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_3.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3);
|
||||||
|
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
|
||||||
|
{
|
||||||
|
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||||
|
}
|
||||||
|
BeginWriteTagHelperAttribute();
|
||||||
|
#line 46 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml"
|
||||||
|
WriteLiteral(r.Id);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
__tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
EndContext();
|
||||||
|
BeginContext(1761, 30, true);
|
||||||
|
WriteLiteral("\r\n ");
|
||||||
|
EndContext();
|
||||||
|
BeginContext(1791, 177, false);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "70a16f0fc0b05ca7fcad86a13636925bc2e6a5ba13499", async() => {
|
||||||
|
BeginContext(1872, 92, true);
|
||||||
|
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
|
||||||
|
EndContext();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
|
||||||
|
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_4.Value;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
|
||||||
|
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
|
||||||
|
{
|
||||||
|
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
|
||||||
|
}
|
||||||
|
BeginWriteTagHelperAttribute();
|
||||||
|
#line 49 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml"
|
||||||
|
WriteLiteral(r.Id);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
__tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
|
||||||
|
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer;
|
||||||
|
__tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
|
||||||
|
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
|
||||||
|
if (!__tagHelperExecutionContext.Output.IsContentModified)
|
||||||
|
{
|
||||||
|
await __tagHelperExecutionContext.SetOutputContentAsync();
|
||||||
|
}
|
||||||
|
Write(__tagHelperExecutionContext.Output);
|
||||||
|
__tagHelperExecutionContext = __tagHelperScopeManager.End();
|
||||||
|
EndContext();
|
||||||
|
BeginContext(1968, 60, true);
|
||||||
|
WriteLiteral("\r\n </td>\r\n </tr>\r\n");
|
||||||
|
EndContext();
|
||||||
|
#line 54 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml"
|
||||||
|
}
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
BeginContext(2047, 62, true);
|
||||||
|
WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>");
|
||||||
|
EndContext();
|
||||||
|
}
|
||||||
|
#pragma warning restore 1998
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; }
|
||||||
|
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
|
||||||
|
public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<dynamic> Html { get; private set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#pragma warning restore 1591
|
Reference in New Issue
Block a user