{% extends "base.html" %} {% block title %}Game Center — {{ config.BBS_NAME }}{% endblock %} {% block content %}

GAME CENTER

Choose your game and prepare to play!

{% if category_filter or search %} Clear {% endif %}
{% if categories %} {% for cat, game_list in categories.items() %}

{{ cat | capitalize }} {{ game_list|length }}

{% for game in game_list %}
{{ game.name }}

{{ game.description or '' }}

{% if game.game_type == 'builtin_web' %}Web Game {% elif game.game_type == 'door_dos' %}DOS Door {% elif game.game_type == 'door_native' %}Native Door {% elif game.game_type == 'door_mystic' %}Mystic Python {% elif game.game_type == 'door_synchronet' %}Synchronet JS {% else %}{{ game.game_type }}{% endif %}
{{ game.play_count or 0 }} plays
{% endfor %}
{% endfor %} {% else %}
No games found{% if search %} matching "{{ search }}"{% endif %}{% if category_filter %} in category "{{ category_filter }}"{% endif %}.
{% endif %}
Now Playing
{% if now_playing %} {% for s in now_playing %}
{{ s.user.username }} → {{ s.game.name }}
{% endfor %} {% else %}

No active sessions.

{% endif %}
Leaderboards
{% endblock %}