Subnav bar added and some other small changes. Need to figure out CSV upload.

This commit is contained in:
Norm Rasmussen
2023-03-01 17:05:16 -05:00
parent deb11e07ae
commit b3a44ce929
13 changed files with 155 additions and 50 deletions

View File

@ -4,4 +4,8 @@ from config import Config
app = Flask(__name__)
app.config.from_object(Config)
# Upload folder
UPLOAD_FOLDER = 'static/files'
app.config['UPLOAD_FOLDER'] =UPLOAD_FOLDER
from app import routes