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

Twitch Drops Dashboard

Track active campaigns and upcoming drops

{% 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 %} {% endfor %}
{% endfor %} {% else %}

No active campaigns at the moment.

{% endif %}
{% endblock content %}