{% extends "plants/base.html" %} {% block title %}{{ title }} — PlantDB{% endblock %} {% block content %}
{{ title }}
{% if species %}
{% if species.api_image_url %} {% endif %}
{{ species.common_name }} {% if species.scientific_name %}{{ species.scientific_name }}{% endif %}
Care info pre-filled from species database.
{% endif %}
{% csrf_token %}
{{ form.name }} {% if form.name.errors %}
{{ form.name.errors }}
{% endif %}
{{ form.location }} {% if form.location.errors %}
{{ form.location.errors }}
{% endif %}
{{ form.new_location }}
Leave empty if selecting from the list above.
{{ form.is_indoor }}
{% for widget in form.bloom_months %}
{{ widget.tag }}
{% endfor %}
{{ form.notes }}
{% endblock %}