Update my_pages/pre_information_loss.py
Browse files
my_pages/pre_information_loss.py
CHANGED
|
@@ -44,12 +44,10 @@ def render():
|
|
| 44 |
st.markdown("---")
|
| 45 |
col1, col2, col3 = st.columns([1, 4, 1])
|
| 46 |
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
go_to("landing")
|
| 51 |
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
go_to("information_loss")
|
|
|
|
| 44 |
st.markdown("---")
|
| 45 |
col1, col2, col3 = st.columns([1, 4, 1])
|
| 46 |
|
| 47 |
+
with col1:
|
| 48 |
+
if st.button("Previous"):
|
| 49 |
+
go_to("landing")
|
|
|
|
| 50 |
|
| 51 |
+
with col3:
|
| 52 |
+
if st.button("Next"):
|
| 53 |
+
go_to("information_loss")
|
|
|