{% extends "base-apply.html" %} {% load render_table from django_tables2 %} {% load static %} {% block extra_css %} {{ my_reviewed.filterset.form.media.css }} {% endblock %} {% block title %}Dashboard{% endblock %} {% block content %}
{% block page_header %}

Dashboard

{% endblock %} Apply admin
{% include "dashboard/includes/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 closed_rounds=rounds.closed open_rounds=rounds.open title="Your rounds and labs" %} {% endif %} {% if projects.table.data %}
{% include "funds/includes/table_filter_and_search.html" with filter=projects.filterset filter_action=projects.url search_term=search_term search_action=projects.url search_placeholder="projects" use_search=True use_batch_actions=False heading="Your projects" %} {% render_table projects.table %} {% if projects.display_more %} {% endif %}
{% endif %} {% if projects_to_approve.count %}

Projects awaiting approval

{% render_table projects_to_approve.table %}
{% endif %} {% if active_payment_requests.count %}

Active requests for payment

{% render_table active_payment_requests.table %}
{% endif %} {% if my_reviewed.table.data %}
{% include "funds/includes/table_filter_and_search.html" with filter=my_reviewed.filterset filter_action=my_reviewed.url search_term=search_term search_action=my_reviewed.url use_search=True use_batch_actions=False heading="Your previous reviews" %} {% render_table my_reviewed.table %} {% if my_reviewed.display_more %} {% endif %}
{% endif %}
{% endblock %} {% block extra_js %} {{ my_reviewed.filterset.form.media.js }} {% endblock %}