{% extends 'base.html' %} {% load static trade_offer_tags card_badge cache card_multiselect %} {% block content %}

Welcome to Pokemon Trade Club

Market Stats

Most Offered Cards
{% cache 3600 most_offered_cards %} {% include "home/_card_list.html" with cards=most_offered_cards mode="wanted" %} {% endcache %}
Most Wanted Cards
{% cache 3600 most_wanted_cards %} {% include "home/_card_list.html" with cards=most_wanted_cards mode="offered" %} {% endcache %}
Least Offered Cards
{% cache 3600 least_offered_cards %} {% include "home/_card_list.html" with cards=least_offered_cards mode="wanted" %} {% endcache %}
{% cache 60 featured_offers %}
Featured Offers
{% for rarity, offers in featured_offers.items %} {% if rarity != "All" %} {% endif %} {% endfor %}
{% endcache %}
{% cache 60 recent_offers %}
Recent Offers
{% for offer in recent_offers %} {% render_trade_offer offer %} {% empty %}

No recent offers available.

{% endfor %}
{% endcache %}
{% endblock content %} {% block javascript %} {% endblock %} {% block css %} {% endblock %}