Add progress bar to other parts of the config app

Hardcode active classes to modal step bars
This commit is contained in:
Sam Chow 2018-07-03 13:06:54 -04:00
parent 100d7eae81
commit ab4bfee019
18 changed files with 131 additions and 32 deletions

View file

@ -5,6 +5,9 @@ import re
from flask import make_response, render_template
from flask_restful import reqparse
from config import frontend_visible_config
from config_app.c_app import app
from config_app._init_config import ROOT_DIR
@ -45,6 +48,7 @@ def render_page_template(name, route_data=None, js_bundle_name=DEFAULT_JS_BUNDLE
contents = render_template(name,
route_data=route_data,
main_scripts=main_scripts,
config_set=frontend_visible_config(app.config),
**kwargs)
resp = make_response(contents)