Update app.py
Browse files
app.py
CHANGED
@@ -141,7 +141,9 @@ def main():
|
|
141 |
batch_size = 5
|
142 |
pages = split_frame(df_results, batch_size)
|
143 |
pagination = st.container()
|
144 |
-
|
|
|
|
|
145 |
with bottom_menu[1]:
|
146 |
total_pages = (ceil(len(df_results) / batch_size) if ceil(len(df_results) / batch_size) > 0 else 1)
|
147 |
current_page = st.number_input("Página", min_value=1, max_value=total_pages, step=1)
|
|
|
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((2))
|
147 |
with bottom_menu[1]:
|
148 |
total_pages = (ceil(len(df_results) / batch_size) if ceil(len(df_results) / batch_size) > 0 else 1)
|
149 |
current_page = st.number_input("Página", min_value=1, max_value=total_pages, step=1)
|