{% extends "base.html" %} {% block content %}
{% for game in games %}
{% for campaign in game.campaigns %}

{{ campaign.name }}

Ends in: {{ campaign.end_at|timeuntil }}

{% for drop in campaign.drops %}
{{ drop.name }} drop image {{ drop.name }}
{% endfor %}
{% endfor %}
{% endfor %}
{% endblock content %}