{% extends "base.html" %} {% load image_tags %} {% block title %} Drops Dashboard {% endblock title %} {% block extra_head %} {% endblock extra_head %} {% block content %}

Active Drops Dashboard

A combined overview of currently active Twitch and Kick drops campaigns.
Click any campaign to open details.


Twitch Campaigns

[rss] [atom] [discord] [explain]
{% if campaigns_by_game %} {% for game_id, game_data in campaigns_by_game.items %}

{{ game_data.name }}

{% if game_data.owners %}
Organizations: {% for org in game_data.owners %} {{ org.name }} {% if not forloop.last %},{% endif %} {% endfor %}
{% endif %}
{% picture game_data.box_art alt="Box art for "|add:game_data.name width=200 %}
{% for campaign_data in game_data.campaigns %}
{% picture campaign_data.campaign.image_best_url|default:campaign_data.campaign.image_url alt="Image for "|add:campaign_data.campaign.name width=120 %}

{{ campaign_data.campaign.clean_name }}

Channels:
    {% if campaign_data.campaign.allow_is_enabled %} {% if campaign_data.allowed_channels %} {% for channel in campaign_data.allowed_channels|slice:":5" %}
  • {{ channel.display_name }}[i]
  • {% endfor %} {% else %} {% if campaign_data.campaign.game.twitch_directory_url %}
  • Go to a participating live channel
  • {% else %}
  • Failed to get Twitch directory URL :(
  • {% endif %} {% endif %} {% if campaign_data.allowed_channels|length > 5 %}
  • ... and {{ campaign_data.allowed_channels|length|add:"-5" }} more
  • {% endif %} {% endif %}
{% endfor %}
{% endfor %} {% else %}

No active Twitch campaigns at the moment.

{% endif %}
{% if active_reward_campaigns %}

Twitch Reward Campaigns (Quest Rewards)

{% for campaign in active_reward_campaigns %} {% endfor %}
{% endif %}

Kick Campaigns

[rss] [atom] [discord] [explain]
{% if kick_campaigns_by_game %} {% for game_id, game_data in kick_campaigns_by_game.items %}

{% if game_data.kick_id %} {{ game_data.name }} {% else %} {{ game_data.name }} {% endif %}

{% if game_data.image %} Image for {{ game_data.name }} {% else %}
No Image
{% endif %}
{% for campaign_data in game_data.campaigns %}
{% if campaign_data.campaign.image_url %} Image for {{ campaign_data.campaign.name }} {% endif %}

{{ campaign_data.campaign.name }}

{% if campaign_data.campaign.organization %}

Organization: {{ campaign_data.campaign.organization.name }}

{% endif %}
Channels:
{% if campaign_data.rewards %}
Rewards:
    {% for reward in campaign_data.rewards|slice:":3" %}
  • {{ reward.name }} ({{ reward.required_units }} min)
  • {% endfor %} {% if campaign_data.rewards|length > 3 %}
  • ... and {{ campaign_data.rewards|length|add:"-3" }} more
  • {% endif %}
{% endif %}
{% endfor %}
{% endfor %} {% else %}

No active Kick campaigns at the moment.

{% endif %}
{% endblock content %}