{% extends "dashboard/base.html" %} {% block dashboard_content %}

Review Queue Summary

{{ total_pending }}
Total Pending
{% for item in review_summary %}
{{ item.count }}
{{ item.sport__short_name }} {{ item.item_type }}s
{% endfor %}

Pending Review Items

{% if pending_items %}
{% for item in pending_items %} {% endfor %}
Type Sport Raw Value Suggested Match Confidence Reason Actions
{{ item.item_type }} {{ item.sport.short_name }} {{ item.raw_value }} {% if item.suggested_id %} {{ item.suggested_id }} {% else %} None {% endif %} {% if item.confidence > 0 %} {{ item.confidence_display }} {% else %}-{% endif %} {{ item.get_reason_display }} Review
{% if total_pending > 50 %}

Showing 50 of {{ total_pending }} items. View all in admin.

{% endif %} {% else %}

No pending review items! 🎉

{% endif %}
{% endblock %}