{# Shared inner fragment for Design 4 - core two-column card markup only #}
{{ card.name }}
{% if card.background and card.background.image or background and background.image %} {% endif %}
{{ card.get_era_display }}
{% if card.diet == 'herbivore' %} 🥦 Herbivore {% elif card.diet == 'carnivore' %} 🥩 Carnivore {% else %} 🍽️ Omnivore {% endif %}
{% if card.image %} {{ card.name }} {% endif %}
{% with s=card.speed_percent w=card.weight_percent it=card.intelligence_percent h=card.height_percent %}
Speed
{{ card.speed_display }}
Weight
{{ card.weight_display }}
Intelligence
{{ card.intelligence_display }}
Height
{{ card.height_display }}
{% endwith %} {% if card.facts_list %}
Fun facts
    {% for fact in card.facts_list|slice:":2" %}
  • {{ fact }}
  • {% endfor %} {% if card.facts_list|length > 2 %}
  • and more...
  • {% endif %}
{% endif %}
{% comment %}
{{ card.name }}
{{ card.description|linebreaksbr }}
{% if card.facts_list %}
Fun facts
    {% for fact in card.facts_list %}
  • {{ fact }}
  • {% endfor %}
{% endif %}
Speed
{{ card.speed_display }}
Weight
{{ card.weight_display }}
Intel
{{ card.intelligence_display }}
Height
{{ card.height_display }}
{% endcomment %}