Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -26,7 +26,7 @@ with upload_column:
|
|
| 26 |
}
|
| 27 |
""",
|
| 28 |
):
|
| 29 |
-
st.button("
|
| 30 |
|
| 31 |
with delete_column:
|
| 32 |
with stylable_container(
|
|
@@ -42,7 +42,7 @@ with delete_column:
|
|
| 42 |
}
|
| 43 |
""",
|
| 44 |
):
|
| 45 |
-
st.button("
|
| 46 |
|
| 47 |
with browse_column:
|
| 48 |
with stylable_container(
|
|
@@ -58,7 +58,7 @@ with browse_column:
|
|
| 58 |
}
|
| 59 |
""",
|
| 60 |
):
|
| 61 |
-
st.button("
|
| 62 |
|
| 63 |
with recycle_column:
|
| 64 |
with stylable_container(
|
|
@@ -74,7 +74,7 @@ with recycle_column:
|
|
| 74 |
}
|
| 75 |
""",
|
| 76 |
):
|
| 77 |
-
st.button("
|
| 78 |
|
| 79 |
|
| 80 |
|
|
|
|
| 26 |
}
|
| 27 |
""",
|
| 28 |
):
|
| 29 |
+
st.button("Upload", key='upload')
|
| 30 |
|
| 31 |
with delete_column:
|
| 32 |
with stylable_container(
|
|
|
|
| 42 |
}
|
| 43 |
""",
|
| 44 |
):
|
| 45 |
+
st.button("Delete", key='delete')
|
| 46 |
|
| 47 |
with browse_column:
|
| 48 |
with stylable_container(
|
|
|
|
| 58 |
}
|
| 59 |
""",
|
| 60 |
):
|
| 61 |
+
st.button("View", key='view')
|
| 62 |
|
| 63 |
with recycle_column:
|
| 64 |
with stylable_container(
|
|
|
|
| 74 |
}
|
| 75 |
""",
|
| 76 |
):
|
| 77 |
+
st.button("Recycle", key='recycle')
|
| 78 |
|
| 79 |
|
| 80 |
|