Sathwikchowdary commited on
Commit
c135fcd
·
verified ·
1 Parent(s): 9958fa4

Update pages/Data_Collection.py

Browse files
Files changed (1) hide show
  1. pages/Data_Collection.py +9 -14
pages/Data_Collection.py CHANGED
@@ -88,24 +88,19 @@ st.markdown(
88
  "</p>",
89
  unsafe_allow_html=True
90
  )
 
91
  # Buttons for each stage
92
  st.markdown("### Select a Lifecycle Stage to Learn More:")
93
- col1,col2 = st.columns(2)
94
 
95
  with col1:
96
- if st.button("SQL"):
97
- st.switch_page("pages/excel_Files.py")
98
- display_lifecycle_stage(
99
- "Problem Statement",
100
- )
101
- if st.button("CSV"):
102
- display_lifecycle_stage(
103
- "CSV"
104
- )
105
- if st.button("SQL"):
106
- display_lifecycle_stage(
107
- "SQL"
108
- )
109
 
110
  with col2:
111
  if st.button("More info"):
 
88
  "</p>",
89
  unsafe_allow_html=True
90
  )
91
+
92
  # Buttons for each stage
93
  st.markdown("### Select a Lifecycle Stage to Learn More:")
94
+ col1, col2 = st.columns(2)
95
 
96
  with col1:
97
+ if st.button("SQL"):
98
+ st.switch_page("pages/excel_Files.py")
99
+ display_lifecycle_stage("Problem Statement")
100
+ if st.button("CSV"):
101
+ display_lifecycle_stage("CSV")
102
+ if st.button("SQL"):
103
+ display_lifecycle_stage("SQL")
 
 
 
 
 
 
104
 
105
  with col2:
106
  if st.button("More info"):