示例#1
0
def index():
    returnDict = {}
    returnDict['user'] = '******'
    returnDict['title'] = 'Home'
    returnDict['sysinfo'] = main.main()

    return render_template("index.html", **returnDict)
示例#2
0
def get_platform_info():
    return (main.main())
示例#3
0
def maint():
    print(main.main())
    return
示例#4
0
def index():
	returnDict = {}
	returnDict['user'] = '******'
	returnDict['title'] = 'Home'
	returnDict['info'] = main()
	return render_template("index.html", **returnDict)
示例#5
0
def index():
 returnDict = {}
 returnDict['user'] = '******' # Feel free to put your name here!
 returnDict['title'] = 'Home'
 returnDict['info'] = main()
 return render_template("index.html", **returnDict)
示例#6
0
def index():
    returnDict = {}
    returnDict['user'] = main.main()  # Feel free to put your name here
    returnDict['title'] = 'Home'
    return render_template("index.html", **returnDict)
示例#7
0
def index():
    returnDict = {}
    returnDict['user'] = '******'
    returnDict['title'] = 'Home'
    returnDict['platform'] = main()
    return render_template("index.html", **returnDict)
示例#8
0
def index():
    returnDict = {}
    returnDict['platform'] = m.main()
    return render_template("index.html", **returnDict)