{% extends "base.html" %} {% load static %} {% block content %}
{% include "partials/toc.html" %}
{% include "partials/info_box.html" %} {% include "partials/news.html" %}

Reward Campaigns

{% for campaign in reward_campaigns %} {% include "partials/reward_campaign_card.html" %} {% endfor %}

Organizations

{% for org in orgs %}

{{ org }}

{% for game in org.games.all %} {% include "partials/game_card.html" %} {% endfor %} {% endfor %}
{% endblock content %}