{% extends "base.html" %} {% load static %} {% load image_tags %} {% load image_tags %} {% block title %} Drop Campaigns - Twitch Drops Tracker {% endblock title %} {% block extra_head %} {% endblock extra_head %} {% block content %}

Drop Campaigns

[rss] [atom] [csv] [json]

{% if campaigns %} {% regroup campaigns by game as campaigns_by_game %} {% for game_group in campaigns_by_game %}
{% if game_group.grouper.box_art_best_url %} {% picture game_group.grouper.box_art_best_url alt="Box art for "|add:game_group.grouper.display_name width=120 height=160 %} {% else %}
🎮
No Image
{% endif %}

{{ game_group.grouper.display_name|default:game_group.grouper.name|default:game_group.grouper.slug|default:game_group.grouper.twitch_id }}

{% if game_group.grouper.owner and game_group.grouper.owner.twitch_id %}

{{ game_group.grouper.owner.name }}

{% endif %}
{% for campaign in game_group.list %} {% endfor %}
{% endfor %} {% else %}

No Campaigns Found

No campaigns match your current filters.
Try adjusting your search criteria.

{% endif %} {% if is_paginated %} {% endif %}
{% endblock content %}