Display a random number

pull/3/head
mandlm 2018-10-29 19:52:51 +01:00
parent 73e9320e99
commit 57bd5d2edb
2 changed files with 3 additions and 2 deletions

View File

@ -1,12 +1,13 @@
#!/usr/bin/python3
from flask import Flask, render_template
from random import randint
app = Flask(__name__)
@app.route("/")
def hello():
return render_template("hello.html")
return render_template("hello.html", num = randint(1, 23))
if __name__ == "__main__":
app.run()

View File

@ -1 +1 @@
Hello Slider!
Hello slider number {{ num }}!