[chronojump-server] Not excluded anymore "Sprint" tasks on airport mode



commit 3390be6775acdcfd140b198cfaf894c77cfcb13e
Author: Xavier de Blas <xaviblas gmail com>
Date:   Sun Jul 9 13:36:11 2017 +0200

    Not excluded anymore "Sprint" tasks on airport mode

 chronojumpserver/views.py |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/chronojumpserver/views.py b/chronojumpserver/views.py
index 31c78fd..12448f5 100755
--- a/chronojumpserver/views.py
+++ b/chronojumpserver/views.py
@@ -20,7 +20,8 @@ def index():
 def airport():
     """Airport mode."""
 
-    stations = [ station.serialize for station in Station.query.filter(Station.type != 'S')]
+    #stations = [ station.serialize for station in Station.query.filter(Station.type != 'S')]
+    stations = [ station.serialize for station in Station.query.all()]
     players =  [ player.serialize for player in Person.query.all()]
     return render_template('airport.html', stations=stations, players=players)
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]