{% extends "base.html" %} {% load image_tags %} {% block title %} Reward Campaigns {% endblock title %} {% block extra_head %} {% endblock extra_head %} {% block content %}

Twitch Reward Campaigns

Twitch > Reward Campaigns

Data is scraped from SunkwiBOT/twitch-drops-api every 15 minutes.

[explain] [api]
[rss] [atom] [discord]
{% if reward_campaigns %} {% with sorted_campaigns=reward_campaigns|dictsortreversed:"ends_at" %} {# Active campaigns #}

Active Reward Campaigns

{% for campaign in sorted_campaigns %} {% if campaign.starts_at <= now and campaign.ends_at >= now %} {% include "twitch/includes/reward_campaign_card.html" with campaign=campaign %} {% endif %} {% endfor %} {# Upcoming campaigns #}

Upcoming Reward Campaigns

{% for campaign in sorted_campaigns %} {% if campaign.starts_at > now %} {% include "twitch/includes/reward_campaign_card.html" with campaign=campaign %} {% endif %} {% endfor %} {# Past campaigns #}

Past Reward Campaigns

{% for campaign in sorted_campaigns %} {% if campaign.ends_at < now %} {% include "twitch/includes/reward_campaign_card.html" with campaign=campaign %} {% endif %} {% endfor %} {% endwith %} {% else %}

No reward campaigns found.

{% endif %} {% endblock content %}