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

Drop Campaigns

Campaign List
{% if campaigns %} {% for campaign in campaigns %} {% if campaign.image_url %} {{ campaign.name }} {% else %} No Image Available {% endif %}
{{ campaign.clean_name }}

{{ campaign.game.display_name }}

{{ campaign.start_at|date:"M d, Y" }} - {{ campaign.end_at|date:"M d, Y" }}

{% if campaign.start_at <= now and campaign.end_at >= now %} {% if campaign.status == 'ACTIVE' %}Active{% endif %} {% elif campaign.start_at > now %} Upcoming {% else %} Expired {% endif %} Details {% endfor %} {% else %} No campaigns found with the current filters. {% endif %} {% if is_paginated %} Showing {{ page_obj.start_index }} to {{ page_obj.end_index }} of {{ page_obj.paginator.count }} campaigns (Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}) {% endif %} {% endblock content %}