Lisibonny commited on
Commit
2819576
1 Parent(s): bd37214

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -142,7 +142,6 @@ def main():
142
  pages = split_frame(df_results, batch_size)
143
  top_menu = st.columns(3)
144
 
145
- st.write("---")
146
  pagination = st.container()
147
 
148
 
@@ -155,9 +154,10 @@ def main():
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
 
163
 
 
142
  pages = split_frame(df_results, batch_size)
143
  top_menu = st.columns(3)
144
 
 
145
  pagination = st.container()
146
 
147
 
 
154
  st.markdown(f"Página **{current_page}** de **{total_pages}** ")
155
 
156
  with top_menu[0]:
157
+ st.markdown(f"Artículos **{current_page}-{batch_size*current_page}** de **{len(df_results)}** ")
158
 
159
  with pagination:
160
+
161
  paginar_frame(pages[current_page - 1])
162
 
163