Files
StorefrontUtility/app/routes.py
2019-06-28 14:23:10 -04:00

13 lines
264 B
Python

from app import app
from flask import render_template
from main import loadClients
@app.route('/')
@app.route('/index')
def index():
ClientName = []
ClientName = loadClients()
return render_template('index.html', title='SFU', ClientName=ClientName)