]> de.git.xonotic.org Git - xonotic/xonstat.git/blobdiff - xonstat/views/map.py
Some fixing up in the "captimes" pages
[xonotic/xonstat.git] / xonstat / views / map.py
index bdd8c885c49aa078629057691c3ab5712453834a..cd6f80fb4e849784057f75eb5f0dc1f617e33b22 100644 (file)
@@ -118,7 +118,8 @@ def _map_info_data(request):
                 filter(PlayerCaptime.map_id == map_id).\
                 filter(Player.player_id == PlayerCaptime.player_id).\
                 order_by(PlayerCaptime.fastest_cap).\
-                limit(10).all()
+                limit(25).\
+                all()
 
         captimes = [Captime(c.player_id, html_colors(c.nick),
             c.fastest_cap, c.game_id) for c in captimes_raw]