{% extends "base-apply.html" %} {% load render_table from django_tables2 %} {% load i18n static %} {% block title %}{% trans "Dashboard" %}{% endblock %} {% block content %}
{% block page_header %}

{% trans "Dashboard" %}

{% endblock %} {% trans "Apply admin" %}

{% trans 'Invoices' %}

{# Active invoices tab #}
{% 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 %}

{% trans "PAF waiting for assignee" %}

{% render_table paf_waiting_for_assignment.table %}
{% endif %}
{% endblock %} {% block extra_js %} {{ my_reviewed.filterset.form.media.js }} {% endblock %}