{% extends "base.html" %} {% load static %} {% block title %} Twitch drops {% endblock title %} {% block content %}

Twitch Drops

Drops are sorted alphabetically by organization and game. Click on a campaign or game title to see more details.
Hover over the end time to see the exact date and time.
{% if campaigns_by_org_game %} {% for org_id, org_data in campaigns_by_org_game.items %}

{% if org_data.name %} {{ org_data.name }} {% else %} Organization {{ org_id }} {% endif %}

{% for game_id, game_data in org_data.games.items %}

{{ game_data.name }}

Box art for {{ game_data.name }}
{% for campaign in game_data.campaigns %}
Image for {{ campaign.name }}

{{ campaign.clean_name }}

{% endfor %}
{% endfor %}
{% endfor %} {% else %}

No active campaigns at the moment.

{% endif %}
{% endblock content %}