{{ form.location }}
{% if form.location.errors %}
{{ form.location.errors }}
{% endif %}
{{ form.new_location }}
Leave empty if selecting from the list above.
{% for val, label in form.watering.field.choices %}
{% endfor %}
{% if species and species.watering %}
Species default: 💧 {{ species.watering }}
{% endif %}
{% if form.watering.errors %}
{{ form.watering.errors }}
{% endif %}
{% for val, label in form.sunlight.field.choices %}
{% endfor %}
{% if species and species.sunlight %}
Species default: ☀️ {{ species.sunlight }}
{% endif %}
{% if form.sunlight.errors %}
{{ form.sunlight.errors }}
{% endif %}