From: antzucaro Date: Sun, 20 Nov 2011 19:37:38 +0000 (-0500) Subject: Sort by the weapon's description in the accuracy table. X-Git-Url: http://de.git.xonotic.org/?a=commitdiff_plain;h=f551a126534ccdc58acdc7023c2183d933cdb05c;p=xonotic%2Fxonstat.git Sort by the weapon's description in the accuracy table. --- diff --git a/xonstat/views/game.py b/xonstat/views/game.py index 05ff277..3706365 100755 --- a/xonstat/views/game.py +++ b/xonstat/views/game.py @@ -67,6 +67,7 @@ def game_info(request): PlayerGameStat.player_game_stat_id).\ order_by(PlayerGameStat.rank).\ order_by(PlayerGameStat.score).\ + order_by(Weapon.descr).\ all(): if pgstat.player_game_stat_id not in pwstats: pwstats[pgstat.player_game_stat_id] = []