diff --git a/8Knot/pages/index/index_callbacks.py b/8Knot/pages/index/index_callbacks.py index 2a810cc9..2ff28326 100644 --- a/8Knot/pages/index/index_callbacks.py +++ b/8Knot/pages/index/index_callbacks.py @@ -35,7 +35,7 @@ # list of queries to be run -QUERIES = [iq, cq, cnq, prq, cmq, iaq, praq, prr, cpfq, rfq, prfq, rlq, pvq, rrq, osq, riq] +QUERIES = [iq, cq, cnq, prq, aq, iaq, praq, prr, cpfq, rfq, prfq, rlq, pvq, rrq, osq, riq] # check if login has been enabled in config diff --git a/8Knot/pages/welcome/sections/general_section.py b/8Knot/pages/welcome/sections/general_section.py index 7d841a32..b0e1a22b 100644 --- a/8Knot/pages/welcome/sections/general_section.py +++ b/8Knot/pages/welcome/sections/general_section.py @@ -28,6 +28,17 @@ html.Div( className="card_section_body", children=[ + html.Div( + className="info_card", + children=[ + html.H2("Repo Overview"), + html.P( + """ + General information at the repo group and single repo level + """ + ), + ], + ), html.Div( className="info_card", children=[ diff --git a/8Knot/pages/welcome/welcome.py b/8Knot/pages/welcome/welcome.py index c15afb70..66f72775 100644 --- a/8Knot/pages/welcome/welcome.py +++ b/8Knot/pages/welcome/welcome.py @@ -36,25 +36,25 @@ className="welcome_instructions_section", children=[ dcc.Tabs( - value="general", + value="plotlyfiguretools", children=[ - dcc.Tab( - label="General", - value="general", - children=[general_tab_contents], - ), dcc.Tab( label="Using 8Knot Visualizations", value="plotlyfiguretools", children=[plotly_tab_contents], ), dcc.Tab( - label="Your Augur Account", + label="How 8Knot Works", + value="general", + children=[general_tab_contents], + ), + dcc.Tab( + label="Logging into Augur", value="auguraccount", children=[augur_tab_contents], ), dcc.Tab( - label="Adding a User Group", + label="Creating Project Groups", value="usergroup", children=[group_tab_contents], ),