Lisibonny commited on
Commit
bd37214
1 Parent(s): 4195e81

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -2
app.py CHANGED
@@ -140,8 +140,11 @@ def main():
140
  df_results=detalles_resultados(df,result)
141
  batch_size = 5
142
  pages = split_frame(df_results, batch_size)
143
- pagination = st.container()
 
144
  st.write("---")
 
 
145
 
146
  bottom_menu = st.columns((3))
147
  with bottom_menu[2]:
@@ -150,7 +153,10 @@ def main():
150
 
151
  with bottom_menu[1]:
152
  st.markdown(f"Página **{current_page}** de **{total_pages}** ")
153
-
 
 
 
154
  with pagination:
155
  paginar_frame(pages[current_page - 1])
156
 
 
140
  df_results=detalles_resultados(df,result)
141
  batch_size = 5
142
  pages = split_frame(df_results, batch_size)
143
+ top_menu = st.columns(3)
144
+
145
  st.write("---")
146
+ pagination = st.container()
147
+
148
 
149
  bottom_menu = st.columns((3))
150
  with bottom_menu[2]:
 
153
 
154
  with bottom_menu[1]:
155
  st.markdown(f"Página **{current_page}** de **{total_pages}** ")
156
+
157
+ with top_menu[0]:
158
+ st.markdown(f"**{batch_size}** resultados de **{total_pages}** ")
159
+
160
  with pagination:
161
  paginar_frame(pages[current_page - 1])
162