From e12e6c4d8e7f5f68792b13bd7d53b974e33972f2 Mon Sep 17 00:00:00 2001 From: Ant Zucaro Date: Sun, 19 Apr 2015 15:48:05 -0400 Subject: [PATCH] The game_index template has not been used in a long, long time. --- xonstat/templates/game_index.mako | 87 ------------------------------- 1 file changed, 87 deletions(-) delete mode 100644 xonstat/templates/game_index.mako diff --git a/xonstat/templates/game_index.mako b/xonstat/templates/game_index.mako deleted file mode 100644 index d240d78..0000000 --- a/xonstat/templates/game_index.mako +++ /dev/null @@ -1,87 +0,0 @@ -<%inherit file="base.mako"/> -<%namespace name="nav" file="nav.mako" /> -<%namespace file="scoreboard.mako" import="scoreboard" /> -<%namespace file="navlinks.mako" import="navlinks" /> - -<%block name="navigation"> -${nav.nav('games')} - - -<%block name="title"> -Game Index - - -% if not games: -

Sorry, no - % if game_type_descr: - ${game_type_descr.lower()} - % endif - games yet. Get playing!

- -% else: -
-
-

Recent - % if game_type_descr: - ${game_type_descr} - % endif - Games

-
-
-
-
- -
-
- % for rg in games.items: -
- ${rg.game_type_cd} -

${rg.map_name} on ${rg.server_name} (permalink)

- - ${scoreboard(rg.game_type_cd, pgstats[rg.game_id])} -
- % endfor -
-
- -
-
- - ${navlinks("game_index", games.page, games.last_page, search_query=request.GET)} -
-
-% endif - -- 2.39.2