{% extends 'dashboard_screen/base.html' %} {% block content %}

All Clients whit pending invoices


{% if clients %}
{% for client in clients %} {% if client.get_invoices %} {% for Inv in client.get_invoices %} {% if Inv.for_month == month %} {{ Inv.invoice }} {% endif %} {% endfor %} {% endif %} {% if forloop.counter|divisibleby:2 %} {% else %} {% endif %} {% endfor %}
Code11 Representative Legal Name Phone Status Actions
{{ client.client_code }} {{ client.get_full_name }} {{ client.business_legal_name }} {{ client.business_phone }} {% if not client.is_aproved or not client.has_price %} Pending{% else %}Aproved{% endif %} {% if client.get_invoices %} {% for Inv in client.get_invoices %} {% if Inv.for_month == month %} {% endif %} {% endfor %} {% endif %}
{{ client.client_code }} {{ client.get_full_name }} {{ client.business_legal_name }} {{ client.business_phone }} {% if not client.is_aproved or not client.has_price %} Pending{% else %}Aproved{% endif %} {% if client.get_invoices %} {% for Inv in client.get_invoices %} {% if Inv.for_month == month %} {% endif %} {% endfor %} {% endif %}
{% else %}

There are not Clients whit pending invoices


{% endif %}
{% endblock %}