Update app.py
Browse files
app.py
CHANGED
@@ -144,11 +144,11 @@ def main():
|
|
144 |
st.write("---")
|
145 |
|
146 |
bottom_menu = st.columns((2))
|
147 |
-
with bottom_menu[
|
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)
|
150 |
|
151 |
-
with bottom_menu[
|
152 |
st.markdown(f"Página **{current_page}** de **{total_pages}** ")
|
153 |
|
154 |
with pagination:
|
|
|
144 |
st.write("---")
|
145 |
|
146 |
bottom_menu = st.columns((2))
|
147 |
+
with bottom_menu[2]:
|
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)
|
150 |
|
151 |
+
with bottom_menu[1]:
|
152 |
st.markdown(f"Página **{current_page}** de **{total_pages}** ")
|
153 |
|
154 |
with pagination:
|