{% include 'templates/common_head.html' %} WU - Annotations: {{ group_name }} {# Link to the specific CSS #} {% include 'templates/navbar.html' %}
{# Left Pane #}

Annotations

{# Use album-name style for consistency #}

{{ group_name }}

{# Use artist-name style #}
{# Potentially add other sticky content here if needed #}
{# Right Pane #} {% for url, annotations_for_url in grouped_annotations.items() %}

{{ url }}

{% for annotation in annotations_for_url %}
{# Individual annotation container #}
{% set selection_type = annotation.selection.type if annotation.selection else 'page' %} {% if selection_type == 'text' and annotation.selection.selectedText %}
{{ annotation.selectedText_html | safe }}
{% elif selection_type == 'image' and annotation.selection.selectedImage %} {% endif %} {% if annotation.annotation %} {{ annotation.annotation_html | safe }} {% endif %}
{{ annotation.timestamp_str }}
{% endfor %} {% endfor %}