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

Welcome to PKMN Trade Club

Card Stats

Most Offered
{% cache 3600 most_offered_cards %} {% include "home/_card_list.html" with cards=most_offered_cards %} {% endcache %}
Most Wanted
{% cache 3600 most_wanted_cards %} {% include "home/_card_list.html" with cards=most_wanted_cards %} {% endcache %}
Least Offered
{% cache 3600 least_offered_cards %} {% include "home/_card_list.html" with cards=least_offered_cards %} {% endcache %}
{% cache 60 featured_offers %}
Featured Offers
{% 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 %}