X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=xonstat%2Fviews%2F__init__.py;h=ec60ac84a0d5360fcc42faeb463474782cf72996;hb=28dad5d3f70a02f515f0378d57dee7f7b4d2abac;hp=879f546e6392618c7312ef53d7e16b47a1190d62;hpb=56bb9531b247d272e516b5d21493ebc8b8f0f812;p=xonotic%2Fxonstat.git diff --git a/xonstat/views/__init__.py b/xonstat/views/__init__.py index 879f546..ec60ac8 100644 --- a/xonstat/views/__init__.py +++ b/xonstat/views/__init__.py @@ -1,21 +1,34 @@ -from xonstat.views.submission import stats_submit +from xonstat.views.submission import submit_stats from xonstat.views.player import player_index, player_info, player_game_index from xonstat.views.player import player_accuracy from xonstat.views.player import player_index_json, player_info_json from xonstat.views.player import player_game_index_json, player_accuracy_json -from xonstat.views.player import player_damage_json, player_hashkey_info_json +from xonstat.views.player import player_damage_json +from xonstat.views.player import player_elo_info_text, player_elo_info_json +from xonstat.views.player import player_hashkey_info_text, player_hashkey_info_json +from xonstat.views.player import player_captimes, player_captimes_json +from xonstat.views.player import player_weaponstats_data_json, player_versus -from xonstat.views.game import game_index, game_info, rank_index -from xonstat.views.game import game_index_json, game_info_json, rank_index_json +from xonstat.views.game import game_info, rank_index +from xonstat.views.game import game_info_json, rank_index_json +from xonstat.views.game import game_finder, game_finder_json from xonstat.views.map import map_info, map_index from xonstat.views.map import map_info_json, map_index_json +from xonstat.views.map import map_captimes, map_captimes_json -from xonstat.views.server import server_info, server_game_index, server_index -from xonstat.views.server import server_info_json, server_game_index_json +from xonstat.views.server import server_info, server_index +from xonstat.views.server import server_info_json from xonstat.views.server import server_index_json from xonstat.views.search import search_q, search from xonstat.views.search import search_json -from xonstat.views.main import main_index +from xonstat.views.exceptions import notfound + +from xonstat.views.main import main_index, top_players_index, top_servers_index +from xonstat.views.main import top_maps_index + +from xonstat.views.admin import forbidden, login, merge + +from xonstat.views.static import robots