{% extends "base-apply.html" %} {% load render_table from django_tables2 %} {% load static %} {% block title %}OTF reviewer Dashboard{% endblock %} {% block content %}
{% block page_header %}

Dashboard

{% endblock %}

Applications to review

{% if my_review.data %}

These are applications for which your review has been requested.

{% render_table my_review %} {% else %} No reviews to complete {% endif %}

Other Applications in review

{% if also_in_review.data %}

You are not assigned to review these applications but they may be of interest

{% render_table also_in_review %} {% else %} There are no other applications in review {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}