{% extends "base-apply.html" %} {% load render_table from django_tables2 %} {% load i18n static nh3_tags markdown_tags heroicons %} {% block extra_css %} {{ my_reviewed.filterset.form.media.css }} {% endblock %} {% block title %}{% trans "Dashboard" %}{% endblock %} {% block content %} {% adminbar %} {% slot header %}{% trans "Dashboard" %}{% endslot %} {% slot sub_heading %}{% trans "Welcome" %}, {{ request.user }}!{% endslot %} {% if perms.wagtailadmin.access_admin %} {% heroicon_solid "cog-6-tooth" size=20 class="me-1 inline align-text-bottom" aria_hidden=true %} {% trans "Administration" %} {% endif %} {% endadminbar %}
{% if my_tasks.count %} {% include "dashboard/includes/my-tasks.html" with mytasks=mytasks %} {% endif %}
{% include "dashboard/includes/submissions-waiting-for-review.html" with in_review_count=awaiting_reviews.count my_review=awaiting_reviews.table display_more=awaiting_reviews.display_more active_statuses_filter=awaiting_reviews.active_statuses_filter %}
{% if my_flagged.table.data %}
{% include "dashboard/includes/flagged.html" with my_flagged=my_flagged.table display_more=my_flagged.display_more %}
{% endif %} {% if rounds.closed or rounds.open %} {% include "funds/includes/round-block.html" with can_export=can_export closed_rounds=rounds.closed open_rounds=rounds.open title="Your rounds and labs" page_type='dashboard' %} {% endif %} {% if PROJECTS_ENABLED and paf_for_review.count %}

{% trans "PAFs for review" %}

{% render_table paf_for_review.table %}
{% endif %} {% if PROJECTS_ENABLED and projects.table.data %}
{% trans "Your projects" as project_heading %} {% render_table projects.table %}
{% endif %} {% if PROJECTS_ENABLED and active_invoices.count %}

{% trans "Active Invoices" %}

{% render_table active_invoices.table %}
{% endif %} {% if my_reviewed.table.data %}
{% trans "Your previous reviews" as review_heading %}

{{ review_heading }}

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