{% extends "core/base.html" %} {% block title %}Review Suggested Matches{% endblock %} {% block content %}

šŸ” Review Suggested Matches

Confirm the suggested scientific‐name replacements below. Only checked boxes (ā€œConfirmā€) will override the raw user input.

{# Display flash messages (error, success, etc.) #} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %} {% if review_list and review_list|length > 0 %}
{# Hidden CSRF token #} {% for row in review_list %} {% endfor %}
Common Name User Input (Scientific Name) Suggested Match Confirm
{{ row.name }} {{ row.sci_name }} {{ row.suggested or '-' }} {% if row.suggested %} {% else %} — {% endif %}
Cancel
{% else %}
No rows to review. Upload another CSV?
{% endif %}
{% endblock %}