{% extends "base.html" %} {% block title %} Games - Grid View {% endblock title %} {% block content %}

All Games

Browse all available games

List View

{% if games_by_org %}
{% for organization, games in games_by_org.items %} {% for item in games %} {% endfor %} {% endfor %}
{% else %}
🎮

No Games Found

No games are currently available.

{% endif %}
{% endblock content %}