{% if active_invoices.count %}
{% render_table active_invoices.table %}
{% else %}
{% trans "No Active Invoices" %}
{% endif %}
{# Waiting for approval tab #}
{% if invoices_for_approval.count %}
{% render_table invoices_for_approval.table %}
{% else %}
{% trans "No Invoices for Approval " %}
{% endif %}
{# Waiting for conversion tab #}
{% if invoices_to_convert.count %}
{% render_table invoices_to_convert.table %}
{% else %}
{% trans "No Invoices for Conversion " %}
{% endif %}
{% if paf_waiting_for_approval.count %}
{% include "dashboard/includes/paf_waiting_for_approval.html" with paf_waiting_for_approval=paf_waiting_for_approval %}
{% endif %}
{% if paf_waiting_for_assignment.count %}