{% extends "base-apply.html" %} {% load render_table from django_tables2 %} {% load i18n static wagtailcore_tags workflow_tags statusbar_tags heroicons %} {% block title %}{% trans "Dashboard" %}{% endblock %} {% block content %} {% adminbar %} {% slot header %}{% trans "Dashboard" %}{% endslot %} {% slot sub_heading %}{% trans "An overview of active and past submissions and projects" %}{% endslot %}

{% trans "Submit a new application" %}

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

{% trans "Apply" %}
{% endadminbar %}

{% trans "Your active submissions" %}

{% for submission in my_active_submissions %}
{% status_bar submission.workflow submission.phase request.user css_class="status-bar--small" %}
{% empty %} {% trans "No active submissions" %} {% endfor %}
{% if active_projects.count %}

{% trans "Your active projects" %}

{% render_table active_projects.table %}
{% 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 %}