summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler Hoang <tyler@tylerhoang.xyz>2026-05-07 00:26:47 -0700
committerTyler Hoang <tyler@tylerhoang.xyz>2026-05-07 00:26:47 -0700
commit23cda7b01e4b6022d8f40938c8193eac57a5a842 (patch)
tree2c7b40fc6a55a41ec280bb4dae0fed1af2953637
parent1a9557c4981e259c772682f35ea8dc5c0a67c7bc (diff)
Hide solo from companions panel in year-in-review
Solo watches aren't relevant to the companions breakdown. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
-rw-r--r--templates/year_review.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/year_review.html b/templates/year_review.html
index 3d03cc0..0a738e5 100644
--- a/templates/year_review.html
+++ b/templates/year_review.html
@@ -85,7 +85,9 @@
<p class="eyebrow">Companions</p>
<ol class="stats-list">
{% for item in watched_with_breakdown %}
+ {% if item.watched_with.lower() != 'solo' %}
<li><span>{{ item.watched_with }}</span><strong>{{ item.count }}</strong></li>
+ {% endif %}
{% endfor %}
</ol>
</article>