Lisibonny commited on
Commit
5997e16
1 Parent(s): 9181055

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -146,13 +146,13 @@ def main():
146
  pagination = st.container()
147
 
148
 
149
- bottom_menu = st.columns((2))
150
 
151
- with bottom_menu[1]:
152
  total_pages = (ceil(cantidad_resultados / batch_size) if ceil(cantidad_resultados / batch_size) > 0 else 1)
153
  current_page = st.number_input("Página", min_value=1, max_value=total_pages, step=1)
154
 
155
- with bottom_menu[0]:
156
  st.write("---")
157
  st.markdown(f"Página **{current_page}** de **{total_pages}** ")
158
 
 
146
  pagination = st.container()
147
 
148
 
149
+ bottom_menu = st.columns((3))
150
 
151
+ with bottom_menu[2]:
152
  total_pages = (ceil(cantidad_resultados / batch_size) if ceil(cantidad_resultados / batch_size) > 0 else 1)
153
  current_page = st.number_input("Página", min_value=1, max_value=total_pages, step=1)
154
 
155
+ with bottom_menu[1]:
156
  st.write("---")
157
  st.markdown(f"Página **{current_page}** de **{total_pages}** ")
158