{% extends "base.html" %} {% from '_comments.html' import render_comments %} {% from '_featured_image.html' import featured_image_block %} {% from '_archive.html' import archive_button, archived_chip %} {% block content %} {{ featured_image_block('species', species.id, species.featured_image_path, species.name) }}

{{ species.name }} ({{ species.common_name or '— common name —' }})

+ Variety {{ archive_button('species', species.id, species.is_archived, '/species/' ~ species.id) }}
{{ (species.type or 'plant')|capitalize }} {{ (species.primary_function or 'edible')|capitalize }}
Sketch spacing: per sq.ft Applies to all varieties unless they override.

Overview history

{{ species.description or '+ add overview' }}

Varieties ({{ varieties|length }})

{% if varieties %} {% else %}

No varieties yet for this species.

{% endif %}

Plants

{{ plant_count }} plant{{ '' if plant_count == 1 else 's' }} of this species across all plantings.

{{ render_comments(species_comments, 'species', species.id, '/species/' ~ species.id, include_children=include_children, include_related=include_related, supports_children=supports_children) }}
{% endblock %}