Update my_pages/developer_decisions.py
Browse files
my_pages/developer_decisions.py
CHANGED
|
@@ -4,6 +4,8 @@ from utils import go_to
|
|
| 4 |
from utils import pipeline_data
|
| 5 |
|
| 6 |
def render():
|
|
|
|
|
|
|
| 7 |
if "active_stage" not in st.session_state:
|
| 8 |
st.session_state.active_stage = None
|
| 9 |
if "active_substage" not in st.session_state:
|
|
@@ -58,13 +60,4 @@ def render():
|
|
| 58 |
questions = pipeline_data[st.session_state.active_stage][st.session_state.active_substage][st.session_state.active_subsub]
|
| 59 |
# st.markdown(f"##### {st.session_state.active_subsub}")
|
| 60 |
for q in questions:
|
| 61 |
-
st.write(f"- {q}")
|
| 62 |
-
|
| 63 |
-
st.markdown("---")
|
| 64 |
-
col1, col2, col3, col4 = st.columns([2, 1, 1, 1])
|
| 65 |
-
with col3:
|
| 66 |
-
if st.button("Go Home"):
|
| 67 |
-
go_to("home")
|
| 68 |
-
with col4:
|
| 69 |
-
if st.button("Next"):
|
| 70 |
-
go_to("ica")
|
|
|
|
| 4 |
from utils import pipeline_data
|
| 5 |
|
| 6 |
def render():
|
| 7 |
+
add_navigation("txt_developer_decisions", "txt_ica")
|
| 8 |
+
|
| 9 |
if "active_stage" not in st.session_state:
|
| 10 |
st.session_state.active_stage = None
|
| 11 |
if "active_substage" not in st.session_state:
|
|
|
|
| 60 |
questions = pipeline_data[st.session_state.active_stage][st.session_state.active_substage][st.session_state.active_subsub]
|
| 61 |
# st.markdown(f"##### {st.session_state.active_subsub}")
|
| 62 |
for q in questions:
|
| 63 |
+
st.write(f"- {q}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|