{% extends "base.html" %}{% load static %} {% block title %} {{ title }}{% endblock %} {% block page_heading %}{% endblock %} {% block content %}

Dashboard

Upcoming Games

{% for event, availability_summary in events_availabilities|slice:":5" %} {% include "widgets/event-card.html"%} {% endfor %}

Past Games

{% for event in ts_events_past|slice:":4" %} {% include "widgets/event-card.html"%} {% endfor %}
{% endblock %}