Bertrand Benjamin
5b206949dd
All checks were successful
continuous-integration/drone/push Build is passing
8 lines
213 B
Python
8 lines
213 B
Python
from bottle import get, run, template
|
|
|
|
@get('/page/<utilisateur>')
|
|
def page_utilisateur(utilisateur):
|
|
return template("utilisateur.html", utilisateur=utilisateur)
|
|
|
|
run(host='localhost', port=8080, debug=True)
|