{% extends "base-apply.html" %} {% load render_table from django_tables2 %} {% load static wagtailcore_tags workflow_tags statusbar_tags %} {% block title %}Submission Dashboard{% endblock %} {% block content %}

Dashboard

An overview of active and past submissions

Submit a new application

Apply now for our open rounds
Apply

Your active submissions

{% for submission in my_active_submissions %}
{{ submission.title }}
Submitted: {{ submission.submit_time.date }} by {{ submission.user.get_full_name }}
{% status_bar submission.workflow submission.phase request.user css_class="status-bar--small" %}
{% if request.user|has_edit_perm:submission %} {% if submission.status == 'draft_proposal' %} Start your {{ submission.stage }} application {% else %} Edit {% endif %} {% endif %}
{% empty %} No active submissions {% endfor %}
{% if table.data %}

Submission history

{% render_table table %}
{% endif %} {% endblock %} {% block extra_js %} {% endblock %}