{% extends "base.html" %} {% block content %}
{% for game in games %}
{% for campaign in game.campaigns %}
{% for drop in campaign.drops %}
{{ drop.name }} drop image {{ drop.name }}
{% endfor %}
{% endfor %}
{% endfor %}
{% endblock content %}