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

Drop Campaigns

Browse all available drop campaigns

{% if campaigns %} {% regroup campaigns by game as campaigns_by_game %} {% for game_group in campaigns_by_game %}
{% if game_group.grouper.box_art_base_url %} Box art for {{ game_group.grouper.display_name }} {% else %}
🎮
No Image
{% endif %}
{% comment %} Find this header section in your template {% endcomment %}

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

{% comment %} MODIFICATION: Check if the owner exists before creating the link {% endcomment %} {% if game_group.grouper.owner %}

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