add some thing

This commit is contained in:
Ultra Desu
2018-10-27 16:47:20 +03:00
parent 8404b990b0
commit 11587d0976
27 changed files with 21789 additions and 1 deletions

View File

@@ -33,7 +33,11 @@ def serve_static(path):
@app.route('/')
def index():
return render_template('index.html')
return render_template('index.html', users=db.get_users())
@app.route('/users_overview')
def users_overview():
return render_template('users_overview.html')
def main():