{# plants/templates/plants/identify_confirm.html #} {% extends "plants/base.html" %} {% block title %}Confirm species — BloomBase{% endblock %} {% block content %}

Is this your plant?

Tap the correct species, then confirm.

{% csrf_token %}
{% for m in matches %}
{% if m.image_url %} {{ m.scientific_name }} {% else %}
🌿
{% endif %}
{{ m.scientific_name }}
{% if m.common_names %}
{{ m.common_names|join:", " }}
{% endif %}
{{ m.family }}
{% widthratio m.score 1 100 %}%
{% endfor %}
{% if locations %}
{% for loc in locations %} {{ loc.name }} {% endfor %}
{% endif %}
{% endblock %}