{% extends "plants/base.html" %} {% block title %}Add plant from card — PlantDB{% endblock %} {% block content %}
Add plant from card
{% if step == 'upload' %}

Take a photo of the front and back of the plant card, then tap Scan.

{% if error %}
{{ error }}
{% endif %}
{% csrf_token %}
{% else %}

Review the scanned data, fill in the plant name, then save.

{% csrf_token %} {% if vpc_results %}
{% for r in vpc_results %}
{% if r.thumbnail_url %} {% endif %}
{{ r.common_name }}
{% endfor %}
Skip — use scan data only
{% endif %}
How you want to refer to this plant in your collection
{% for val, label in month_choices %}
{% endfor %}
{% for val, label in sunlight_choices %}
{% endfor %}
{% if plant_photo_preview_url %}
{% endif %}
Start over
{% endif %} {% endblock %}