{{ plant.name }}
{% if plant.climate %}
{% if plant.climate_icon %}
{% endif %}
{{ plant.climate }}
{{ plant.climate_description }}
{% endif %}
{% if plant.environment %}
{% if plant.environment_icon %}
{% endif %}
{{ plant.environment }}
{{ plant.environment_description }}
{% endif %}
{% if plant.light %}
{% if plant.light_icon %}
{% endif %}
{{ plant.light }}
{{ plant.light_description }}
{% endif %}
{% if plant.toxicity %}
{% if plant.toxicity_icon %}
{% endif %}
{{ plant.toxicity }}
{{ plant.toxicity_description }}
{% endif %}
{% if plant.size %}
{% if plant.size_icon %}
{% endif %}
{{ plant.size }}
{{ plant.size_description }}
{% endif %}
{% if plant.care_difficulty %}
{% if plant.care_difficulty_icon %}
{% endif %}
{{ plant.care_difficulty }}
{{ plant.care_difficulty_description }}
{% endif %}
{% if plant.growth_rate %}
{% if plant.growth_rate_icon %}
{% endif %}
{{ plant.growth_rate }}
{{ plant.growth_rate_description }}
{% endif %}
{{ plant.description[:120] }}{% if plant.description and plant.description|length > 120 %}...{% endif %}
Added on