{% load strava_icons %}{% comment %} Compare matrix body: the sport filter bar + the year-over-year table. Rendered in place on full page load and swapped into #cmp-body on a sport-filter click (htmx). {% endcomment %}
Sport
{% for opt in sport_seg %} {% endfor %}
{% if years %}
Metric
{% for y in years %}
{{ y.year }}
{{ y.tag }}
{% endfor %}
{% for row in rows %}
{% include "strava/widgets/compare_icon.html" with icon=row.icon %} {{ row.name }}
{{ row.unit }}
{% for c in row.cells %}
{% if c.has %} {{ c.display }}{% if c.small %}{{ c.small }}{% endif %}{% if c.best %}{% endif %} {% include "strava/widgets/compare_delta.html" with delta=c.delta %} {% else %} {% endif %}
{% endfor %}
{% endfor %} {% for row in aoty_rows %}
{% include "strava/widgets/compare_icon.html" with icon=row.icon %} {{ row.name }}
{{ row.unit }}
{% for c in row.cells %}
{% if c.title %} {% if c.photo %}{{ c.title }}{% endif %} {{ c.title }} {% for s in c.segments %}{% if not forloop.first %} · {% endif %}{{ s.v }}{{ s.u }}{% endfor %} {% else %} {% endif %}
{% endfor %}
{% endfor %}
{% else %}

No activities to compare yet.

{% endif %}