From 366c535a56bde5bd2d086d48537b2c7d91b28f18 Mon Sep 17 00:00:00 2001 From: michael mead Date: Mon, 7 Aug 2017 20:42:49 -0500 Subject: [PATCH] start templating --- src/api/index.py | 11 +++++------ src/api/templates/dashboard.html | 11 ++++++++++- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/src/api/index.py b/src/api/index.py index f6b49f3..dd3c1e3 100644 --- a/src/api/index.py +++ b/src/api/index.py @@ -59,7 +59,7 @@ def home(): try: gReader = factory.instance(type=class_read,args=p) apps = gReader.view('summary/nodes',key=p['uid']) - + except Exception, e: print (e) return render_template('dashboard.html',context=context,title=title,app_names=apps) @@ -69,7 +69,6 @@ def get_nodes(): """ This function returns the labels of applications for every node registered @param None - e.g: apps@zulu.org """ r = [] try: @@ -83,7 +82,7 @@ def get_nodes(): def get_apps(): """ This function returns the applications for a given node - @param node identifier e.g: apps@zulu.org + @param node identifier e.g: apps@zulu.org <--------------------no it doesnt """ r = [] try: @@ -174,11 +173,11 @@ def app_status() : # print[nid,aid] r = r[nid][aid] - + except Exception,e: print e - - return json.dumps(r) + + return json.dumps(r) #@app.route('/get/') #def procs(id): #try: diff --git a/src/api/templates/dashboard.html b/src/api/templates/dashboard.html index 02edef5..edaefe1 100644 --- a/src/api/templates/dashboard.html +++ b/src/api/templates/dashboard.html @@ -156,7 +156,16 @@