{% from "addons/listing/macros.html" import heading, item_info %} {% set collection = collection or None %} {% set collection_cache_key = collection.cache_key if collection else 'collection-none' %} {% set userpk = request.user.pk if request.user.is_authenticated() else '' %} {% cache addons, extra=[collection_cache_key, userpk] %} {% for addon in addons %}
{% if addon.is_persona() %} {{ persona_preview(addon.persona, linked=False) }} {% else %}{% if notes and notes[addon.id] %}{{ addon.summary|truncate(250)|nl2br }}{% endif %}
{{ _("Collector's Note") }} {{ notes[addon.id] }}{% endif %}