|
|
|
@ -321,8 +321,7 @@ def statistiques(): |
|
|
|
else: |
|
|
|
n_tranchés += 1 |
|
|
|
|
|
|
|
stats = (tranchés,n_tranchés) |
|
|
|
return stats |
|
|
|
return (tranchés,n_tranchés) |
|
|
|
|
|
|
|
|
|
|
|
@app.route('/banned_ip') |
|
|
|
@ -364,20 +363,20 @@ def home(): |
|
|
|
reverse=True) |
|
|
|
|
|
|
|
bans_hist = [] |
|
|
|
for banned in bans: |
|
|
|
date = strftime('%Hh%M (%A)', localtime(banned['time'])) |
|
|
|
source = get_player(banned['player_id']) |
|
|
|
target = get_player(banned['target_id']) |
|
|
|
for banned_user in bans: |
|
|
|
date = strftime('%Hh%M (%A)', localtime(banned_user['time'])) |
|
|
|
source = get_player(banned_user['player_id']) |
|
|
|
target = get_player(banned_user['target_id']) |
|
|
|
|
|
|
|
if target['id'] == player['id']: |
|
|
|
if banned['success']: |
|
|
|
if banned_user['success']: |
|
|
|
entry = ('ban', u'%s : %s %s a réussi à t\'avoir.' \ |
|
|
|
% (date, source['firstname'], source['name'])) |
|
|
|
else: |
|
|
|
entry = ('warn', u'%s : %s %s a essayé de te trancher, en vain.' \ |
|
|
|
% (date, source['firstname'], source['name'])) |
|
|
|
else: |
|
|
|
if banned['success']: |
|
|
|
if banned_user['success']: |
|
|
|
entry = ('ok', u'%s : Tu as tranché %s %s avec succès.' \ |
|
|
|
% (date, target['firstname'], target['name'])) |
|
|
|
else: |
|
|
|
@ -403,20 +402,20 @@ def play(): |
|
|
|
reverse=True) |
|
|
|
|
|
|
|
bans_hist = [] |
|
|
|
for banned in bans: |
|
|
|
date = strftime('%Hh%M (%A)', localtime(banned['time'])) |
|
|
|
source = get_player(banned['player_id']) |
|
|
|
target = get_player(banned['target_id']) |
|
|
|
for banned_user in bans: |
|
|
|
date = strftime('%Hh%M (%A)', localtime(banned_user['time'])) |
|
|
|
source = get_player(banned_user['player_id']) |
|
|
|
target = get_player(banned_user['target_id']) |
|
|
|
|
|
|
|
if target['id'] == player['id']: |
|
|
|
if banned['success']: |
|
|
|
if banned_user['success']: |
|
|
|
entry = ('ban', u'%s : %s %s a réussi à t\'avoir.' \ |
|
|
|
% (date, source['firstname'], source['name'])) |
|
|
|
else: |
|
|
|
entry = ('warn', u'%s : %s %s a essayé de te trancher, en vain.' \ |
|
|
|
% (date, source['firstname'], source['name'])) |
|
|
|
else: |
|
|
|
if banned['success']: |
|
|
|
if banned_user['success']: |
|
|
|
entry = ('ok', u'%s : Tu as tranché %s %s avec succès.' \ |
|
|
|
% (date, target['firstname'], target['name'])) |
|
|
|
else: |
|
|
|
|