{% extends "base.html" %} {% from '_featured_image.html' import featured_image_block %} {% from '_archive.html' import archive_button, archived_chip %} {% block title %}{{ year_obj.year }} — Garden{% endblock %} {% block content %} {{ featured_image_block('year', year_obj.id, year_obj.featured_image_path, year_obj.year) }}

{{ year_obj.year }}

+ Planting {{ archive_button('year', year_obj.id, year_obj.is_archived, '/years/' ~ year_obj.id) }}

Overview history

{{ year_obj.notes or '+ add overview' }}

Plantings ({{ plantings|length }})

{% if plantings %} {% else %}

No plantings for this year yet.

{% endif %}
{% from '_comments.html' import render_comments %} {{ render_comments(year_comments, 'year', year_obj.id, '/years/' ~ year_obj.id, include_children=include_children, include_related=include_related, supports_children=supports_children) }}
{% endblock %}