{# Sidecar enrichment + price comparison. Rendered only on the solo (detail) view and only when the sidecar returned data for this set. #} {% if solo and sidecar_summary %} {% set s = sidecar_summary %} {% set p = s.prices %} {# Enrichment badges (retired / MSRP / value / dimensions / weight) are rendered by macro/badge.html via BADGE_ORDER_DETAIL, so they are not repeated here. #} {# --- Designer (web-scraped; the API does not expose it) --- #} {% if s.designer and config['SIDECAR_SHOW_DESIGNER'] %}
Designer: {{ s.designer }}
{% endif %} {# --- Price comparison: paid / retail / worth now. Rendered cache-only at page load; when SIDECAR_AUTO_FETCH_PRICE is on, the browser refreshes this card in the background (set.price_card, TTL-aware) so the potentially slow BrickLink scrape never blocks the page render. --- #}
{% include 'set/price_card.html' %}
{# --- Sidecar description, styled like notes. This is the official set blurb, distinct from the user's own notes, so it is always shown when present. --- #} {% if s.description and config['SIDECAR_SHOW_DESCRIPTION'] %}
{% endif %} {# --- Brickset Notes (web-scraped; trivia / variants / packaging quirks). --- #} {% if s.notes and config['SIDECAR_SHOW_NOTES'] %}
{% endif %} {% endif %}