13 lines
264 B
Python
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) |