]> git.cworth.org Git - empires-server/commitdiff
Drop misleading word "active" from list of idle games
authorCarl Worth <cworth@cworth.org>
Wed, 27 May 2020 16:54:52 +0000 (09:54 -0700)
committerCarl Worth <cworth@cworth.org>
Wed, 27 May 2020 16:54:52 +0000 (09:54 -0700)
By definition, an idle game has no active players, so this word was
misleading, (just a leftover copy/paste bug from the list of active
games).

templates/admin.html

index df79394f619452fe825601430e47005490ebb0fa..051d485b962e2aebd45bf33a91fd775e1fa62cc6 100644 (file)
@@ -27,7 +27,7 @@
 <ul>
   {% for game in games.idle %}
   <li>
-    {{ game.id }} ({{ game.game._players.length }} active)
+    {{ game.id }} ({{ game.game._players.length }})
     {% for player in game.game._players %}
       {{ player.name }}
     {% endfor %}