Beispiel #1
0
def index():
    returnDict = {}
    returnDict['user'] = '******'
    returnDict['title'] = 'COMP30670'
    returnDict['platform'] = main.get_platform()
    print(main.get_platform())
    return render_template('index.html', **returnDict)
Beispiel #2
0
def index():
    returnDict = {}
    returnDict['user'] = '******'
    returnDict['title'] = 'Home'
    returnDict['platform'] = get_platform()
    return render_template("index.html", **returnDict)
Beispiel #3
0
def index():
    returnDict = {}
    returnDict['user'] = '******'  # Feel free to put your name here!
    returnDict['title'] = 'Home'
    returnDict['platform'] = get_platform()
    return render_template("index.html", **returnDict)
Beispiel #4
0
def index():
	returnDict = {}
	returnDict['user'] = '******'
	returnDict['title'] = 'Home'
	returnDict['platform'] = get_platform()
	return render_template("index.html", **returnDict)