{% extends "base-apply.html" %} {% load render_table from django_tables2 %} {% load i18n static wagtailcore_tags workflow_tags statusbar_tags heroicons dashboard_statusbar_tags apply_tags invoice_tools markdown_tags nh3_tags %} {% block body_class %}bg-light-grey{% endblock %} {% block title %}{% trans "Dashboard" %}{% endblock %} {% block content %}

{% trans "My dashboard" %}

{% trans "An overview of active and past submissions and projects" %}

{% trans "Submit a new application" %}

{% trans "Apply now for our open rounds" %}

{% trans "Apply" %}
{% if my_tasks.count %}

{% trans "My tasks" %}

{% for task in my_tasks.data %}
{{ task.text|markdown|nh3 }}
View
{% endfor %}
{% endif %} {% if my_submissions_exists %}

{% trans "My submissions" %}

{% for dummy_item in per_section_items %}
{% endfor %}
{% endif %} {% if my_projects_exists %}

{% trans "My projects" %}

{% for dummy_item in per_section_items %}
{% endfor %}
{% endif %} {% if active_invoices.count %}

{% trans "My active invoices" %}

{% for invoice in active_invoices.data %}

{% if invoice.invoice_amount %}{{ invoice.invoice_amount | format_number_as_currency }}{% else %}-{% endif %}

{% display_invoice_table_status_for_user invoice.status request.user as invoice_status %}

{{ invoice_status }}

{% empty %} {% trans "No active invoices" %} {% endfor %}
{% endif %}
{% if historical_submissions.count %}

{% trans "Submission history" %}

{% render_table historical_submissions.table %}
{% endif %} {% if historical_projects.count %}

{% trans "Project history" %}

{% render_table historical_projects.table %}
{% endif %} {% endblock %}