{% extends "base.html" %} {% block title %}Home{% endblock %} {% block content %}
{% for plant in plants %}
{% if plant.picture %} {{ plant.name }} {% else %} No image available {% endif %}

{{ plant.name }}

{% if plant.climate %} {% if plant.climate_icon %} Climate icon {% endif %} {{ plant.climate }} {{ plant.climate_description }} {% endif %} {% if plant.environment %} {% if plant.environment_icon %} Environment icon {% endif %} {{ plant.environment }} {{ plant.environment_description }} {% endif %} {% if plant.light %} {% if plant.light_icon %} Light icon {% endif %} {{ plant.light }} {{ plant.light_description }} {% endif %} {% if plant.toxicity %} {% if plant.toxicity_icon %} Toxicity icon {% endif %} {{ plant.toxicity }} {{ plant.toxicity_description }} {% endif %}
{% if plant.size %} {% if plant.size_icon %} Size icon {% endif %} {{ plant.size }} {{ plant.size_description }} {% endif %} {% if plant.care_difficulty %} {% if plant.care_difficulty_icon %} Care difficulty icon {% endif %} {{ plant.care_difficulty }} {{ plant.care_difficulty_description }} {% endif %} {% if plant.growth_rate %} {% if plant.growth_rate_icon %} 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
{% endfor %}
{% endblock %}