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

{{ game.name }}

{{ game.description or 'No description available.' }}

Category
{{ game.category | capitalize }}
Type
{% if game.game_type == 'builtin_web' %}Built-in Web Game {% elif game.game_type == 'door_dos' %}Classic DOS Door {% elif game.game_type == 'door_native' %}Native Door {% elif game.game_type == 'door_mystic' %}Mystic BBS Python {% elif game.game_type == 'door_synchronet' %}Synchronet JS {% else %}{{ game.game_type }}{% endif %}
Total Plays
{{ game.play_count or 0 }}
Active Now
{{ active_sessions | length }}
{% if current_user.is_authenticated %} Play Now {% else %} Login to Play {% endif %}
Top Scores
{% if top_scores %} {% for score in top_scores %} {% endfor %}
# Player Score
{{ loop.index }} {{ score.user.username }} {{ score.score }}
{% else %}

No scores yet. Be the first!

{% endif %}
{% endblock %}