1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-11 23:58:08 -05:00

update file localizations

update custom callbacks
add server count to master
add most played to token list
This commit is contained in:
RaidMax
2018-05-21 16:09:27 -05:00
parent 31744ce876
commit 8ac75ec63a
14 changed files with 1181 additions and 1052 deletions

View File

@ -9,7 +9,7 @@ from master.resources.history_graph import HistoryGraph
@app.route('/')
def home():
_history_graph = HistoryGraph().get(500)
_history_graph = HistoryGraph().get(2880)
return render_template(
'index.html',
title='API Overview',
@ -17,5 +17,5 @@ def home():
data_points = _history_graph[0]['data_points'],
instance_count = _history_graph[0]['instance_count'],
client_count = _history_graph[0]['client_count'],
max_data_points = 1440
server_count = _history_graph[0]['server_count']
)