@{
ViewData["Title"] = "Dashboard";
}
@ViewData["Title"]
# |
Nome |
Email |
É Admin |
Opções |
@foreach (Desenvolvedor d in ViewBag.Desenvolvedores)
{
@d.Id |
@d.Nome |
@d.Email |
@d.EAdmin |
|
}
# |
Nome |
Data de Entrega |
Solicitante |
Opções |
@foreach (Projeto p in ViewBag.Projetos)
{
@p.Id |
@p.Nome |
@p.DataEntrega |
@p.Solicitante |
|
}
# |
Descrição |
Observações |
É Funcional |
Data de Cadastro |
Data de Entrega |
Opções |
@foreach (Requisito r in ViewBag.Requisitos)
{
@r.Id |
@r.Descricao |
@r.Observacoes |
@r.EFuncional |
@r.DataCadastro |
@r.DataEntrega |
|
}
# |
Descrição |
Foi Resolvido |
Data de Cadastro |
Prioridade |
Opções |
@foreach (Bug b in ViewBag.Bugs)
{
@b.Id |
@b.Descricao |
@b.FoiResolvido |
@b.DataCadastro |
@b.Prioridade |
|
}