{% extends "base-apply.html" %} {% load render_table from django_tables2 %} {% load i18n static markdown_tags nh3_tags heroicons %} {% block title %}{% trans "Dashboard" %}{% endblock %} {% block content %} {% adminbar %} {% slot header %}{% trans "Dashboard" %}{% endslot %} {% if perms.wagtailadmin.access_admin %} {% heroicon_solid "cog-6-tooth" size=20 class="inline align-text-bottom me-1" aria_hidden=true %} {% trans "Administration" %} {% endif %} {% endadminbar %}
{% if my_tasks.count %} {% include "dashboard/includes/my-tasks.html" with mytasks=mytasks %} {% endif %} {% if paf_for_review.count %}

{% trans "PAFs for review" %}

{% render_table paf_for_review.table %}
{% endif %} {% if projects_in_contracting.count %} {% include "dashboard/includes/projects_in_contracting.html" with projects_in_contracting=projects_in_contracting %} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}