{% extends 'base.html' %} {% block content %} {% if total_pending == 0 %}
No items pending review. All data has been validated.
{% endif %} {% if review_summary %}

Review Summary

{% for item in review_summary %}
{{ item.count }}
{{ item.sport__short_name }} - {{ item.item_type|title }}
{% endfor %}
{% endif %}

Pending Reviews

View in Admin
{% for item in pending_items %} {% empty %} {% endfor %}
Type Sport Raw Value Matched To Confidence Created Actions
{% if item.item_type == 'team' %} Team {% elif item.item_type == 'stadium' %} Stadium {% elif item.item_type == 'game' %} Game {% else %} {{ item.item_type }} {% endif %} {{ item.sport.short_name }} {{ item.raw_value }} {% if item.matched_value %} {{ item.matched_value }} {% else %} No match {% endif %}
{{ item.confidence }}%
{{ item.created_at|timesince }} ago Review
No pending reviews
{% endblock %}