{% extends "base.html" %} {% block title %}Games - Twitch Drops Tracker{% endblock %} {% block content %}

Games

Browse all games with Twitch drop campaigns.

{% for item in games_with_counts %}
{{ item.game.display_name }}
{{ item.campaign_count }} Campaigns {% if item.active_count > 0 %} {{ item.active_count }} Active {% endif %}
{% empty %}
No games found.
{% endfor %}
{% endblock %}