{% extends 'base.html' %} {% block title %}Pending Reviews{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if submissions %}

Total Pending

{{ submissions|length }}

Comprehension

{{ submissions|selectattr('content_type', 'equalto', 'comprehension')|list|length }}

Speaking

{{ submissions|selectattr('content_type', 'equalto', 'speaking')|list|length }}

Sort by:
{% for submission in submissions %}

{{ submission.progress.student.username }}

{{ submission.progress.student.email }}

Program: {{ submission.progress.student.program or 'N/A' }}
Department: {{ submission.progress.student.department or 'N/A' }}

Topic

{{ submission.progress.topic.title }}

Category

{{ submission.progress.topic.category }}

{{ submission.content_type }}
{{ submission.created_at.strftime('%b %d, %H:%M') }}

Waiting for Review

Pending
{% if submission.created_at %}

Submitted {{ submission.created_at.strftime('%A, %B %d at %I:%M %p') }}

{% endif %}
Review Now
{% endfor %}
{% else %}

All Caught Up!

There are no pending submissions to review at the moment. Great work staying on top of things!

Back to Dashboard
{% endif %}
{% endblock %}