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)
|