{% extends "base.html" %} {% block title %}Clientes{% endblock %} {% block page_title %}Clientes{% endblock %} {% block topbar_actions %} Nuevo cliente {% endblock %} {% block content %}
| Nombre | NIF/CIF | Teléfono | Total facturado | Pendiente cobro | ||
|---|---|---|---|---|---|---|
|
{{ c.nombre }}
{% if c.ciudad %} {{ c.ciudad }} {% endif %}
|
{{ c.nif or '—' }} | {{ c.email or '—' }} | {{ c.telefono or '—' }} | {{ "%.2f"|format(stats[c.id].total) }} € | {{ "%.2f"|format(stats[c.id].pendiente) }} € | |
| {% if buscar %}Sin resultados para "{{ buscar }}"{% else %}No hay clientes registrados{% endif %} | ||||||