mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-03-09 15:40:09 +00:00
Black linting
This commit is contained in:
parent
b3d4a3206e
commit
71e75ed1ab
1 changed files with 2 additions and 0 deletions
|
@ -199,6 +199,7 @@ def list_vms(user_view=None):
|
||||||
vms = 'INACTIVE'
|
vms = 'INACTIVE'
|
||||||
return render_template('list_vms.html', user=user, user_view=user_view, vms=vms)
|
return render_template('list_vms.html', user=user, user_view=user_view, vms=vms)
|
||||||
|
|
||||||
|
|
||||||
@app.route("/pools")
|
@app.route("/pools")
|
||||||
def list_pools():
|
def list_pools():
|
||||||
user = User(session['userinfo']['preferred_username'])
|
user = User(session['userinfo']['preferred_username'])
|
||||||
|
@ -210,6 +211,7 @@ def list_pools():
|
||||||
vms = get_pool_cache(db)
|
vms = get_pool_cache(db)
|
||||||
return render_template('list_pools.html', user=user, vms=vms)
|
return render_template('list_pools.html', user=user, vms=vms)
|
||||||
|
|
||||||
|
|
||||||
@app.route('/isos')
|
@app.route('/isos')
|
||||||
@auth.oidc_auth
|
@auth.oidc_auth
|
||||||
def isos():
|
def isos():
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue