{% macro render_attachments(attachments, compact=false) -%} {%- if attachments %}
{% for attachment in attachments %}
{{ attachment.alt_text }}
{% if attachment.caption %}

{{ attachment.caption }}

{% endif %}
Image provenance
Source
{{ attachment.source }}
{% if attachment.generator_model %}
Generator
{{ attachment.generator_model }}
{% endif %} {% if attachment.prompt %}
Prompt
{{ attachment.prompt }}
{% endif %} {% if attachment.source_url %}
Original
{{ attachment.source_url }}
{% endif %}
Shown to author
{{ 'yes' if attachment.presented_to_author else 'no' }}
SHA-256
{{ attachment.sha256 }}
{% endfor %}
{%- endif %} {%- endmacro %}