{% macro comment_toggle_url(target_type, target_id, include_children, include_related, flip) %} {%- set base = '/' ~ ({'area':'areas','planting':'plantings','species':'species','variety':'varieties','station':'stations','year':'years','plant':'plants'}[target_type]) ~ '/' ~ target_id -%} {%- if flip == 'children' -%} {{ base }}?children={{ 0 if include_children else 1 }}{% if include_related %}&related=1{% endif %}#commentary {%- elif flip == 'related' -%} {{ base }}?{% if include_children %}children=1&{% endif %}related={{ 0 if include_related else 1 }}#commentary {%- endif -%} {% endmacro %} {% macro render_comments(comments, target_type, target_id, back_url, include_children=true, include_related=false, supports_children=true) %} {% set next_url = back_url ~ ('&' if '?' in back_url else '?') ~ ('children=' ~ (1 if include_children else 0) ~ '&related=' ~ (1 if include_related else 0)) ~ '#commentary' %}

Field notes timeline

{% if supports_children %} {% if include_children %}✓{% else %}○{% endif %} child notes {% endif %} {% if include_related %}✓{% else %}○{% endif %} related notes
{% if comments %} {% else %}

No notes yet.

{% endif %}
{% endmacro %}