{% extends 'base.html' %} {% block title %}Clientes — 2N Painel{% endblock %} {% block content %}
← Dashboard
Clientes
Novo Cliente
Clientes ({{ clients|length }})
{% if clients %} {% for c in clients %} {% endfor %}
Nome Contato Projetos
{{ c.name }} {% if c.email %}{{ c.email }}
{% endif %} {% if c.phone %}{{ c.phone }}{% endif %}
{{ c.projects.count() }}
{% else %}

Nenhum cliente cadastrado.

{% endif %}
{% endblock %}