{% extends 'base.html' %} {% block title %}Dashboard — 2N Painel{% endblock %} {% block content %}
Dashboard
{% if current_user.is_admin() %} Novo Projeto {% endif %}
Total
{{ stats.total }}
projetos ativos
Em Andamento
{{ stats.em_andamento }}
em execução
Aguardando
{{ stats.aguardando }}
pendente de retorno
Concluídos
{{ stats.concluido }}
finalizados
{% if current_user.is_admin() %}
{% endif %} {% if selected_status or selected_client or selected_responsible %} Limpar {% endif %}
{% if projects %} {% for p in projects %} {% endfor %}
Projeto Cliente Tipo Status Prioridade Prazo Responsável
{{ p.name }} {{ p.client.name }} {{ p.service_type or '—' }} {% if p.status == 'em_andamento' %}Em Andamento {% elif p.status == 'aguardando' %}Aguardando {% elif p.status == 'concluido' %}Concluído {% elif p.status == 'cancelado' %}Cancelado {% elif p.status == 'pausado' %}Pausado {% endif %} {% if p.priority == 'urgente' %}Urgente {% elif p.priority == 'alta' %}Alta {% elif p.priority == 'normal' %}Normal {% elif p.priority == 'baixa' %}Baixa {% endif %} {% if p.deadline %}{{ p.deadline.strftime('%d/%m/%Y') }}{% else %}—{% endif %} {% if p.responsible %}{{ p.responsible.name.split()[0] }}{% else %}—{% endif %}
{% else %}

Nenhum projeto encontrado.

{% if current_user.is_admin() %} Criar primeiro projeto {% endif %}
{% endif %}
{% endblock %}