{% extends "base.html" %} {% block content %}

Players

{% if players %} {% for player in players %} {% endfor %}
Player Progress Status Combat Stats Actions
{{ player.username }}
Wallet ${{ player.wallet_money }}
Lv {{ player.level }} • {{ player.xp }} xp {{ player.status }} {{ player.effective_strength }}/{{ player.effective_speed }}/{{ player.effective_defense }}/{{ player.effective_dexterity }} Profile Attack
{% else %}

No other players yet. Create a second account to test attacks and mugging.

{% endif %}
{% endblock %}