def busstop():
    return render_template('index.html',
                           departurest=trains(9521),
                           departuresb=buses(7571))
Beispiel #2
0
def hello_world():

    return render_template("index.html",
                           departures=trains(9521),
                           departures2=buses(7571))
Beispiel #3
0
def hello_world():

    return render_template("index.html", departures=trains(9521))
def busstop():
    return render_template("index.html", departurest=trains(9521), departuresb=buses(7571))