Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -12,65 +12,69 @@ st.markdown(
|
|
12 |
unsafe_allow_html=True,
|
13 |
)
|
14 |
|
15 |
-
with
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
|
|
|
|
|
|
|
|
74 |
|
75 |
|
76 |
|
|
|
12 |
unsafe_allow_html=True,
|
13 |
)
|
14 |
|
15 |
+
with upload_column
|
16 |
+
with stylable_container(
|
17 |
+
key="upload_button",
|
18 |
+
css_styles=r"""
|
19 |
+
button p:before {
|
20 |
+
font-family: 'Font Awesome 5 Free';
|
21 |
+
content: '\f574';
|
22 |
+
display: inline-block;
|
23 |
+
padding-right: 3px;
|
24 |
+
vertical-align: middle;
|
25 |
+
font-weight: 900;
|
26 |
+
}
|
27 |
+
""",
|
28 |
+
):
|
29 |
+
st.button("Upload File")
|
30 |
+
|
31 |
+
with delete_column
|
32 |
+
with stylable_container(
|
33 |
+
key="delete_button",
|
34 |
+
css_styles=r"""
|
35 |
+
button p:before {
|
36 |
+
font-family: 'Font Awesome 5 Free';
|
37 |
+
content: '\f1c3';
|
38 |
+
display: inline-block;
|
39 |
+
padding-right: 3px;
|
40 |
+
vertical-align: middle;
|
41 |
+
font-weight: 900;
|
42 |
+
}
|
43 |
+
""",
|
44 |
+
):
|
45 |
+
st.button("Delete File")
|
46 |
+
|
47 |
+
with browse_column
|
48 |
+
with stylable_container(
|
49 |
+
key="view_button",
|
50 |
+
css_styles=r"""
|
51 |
+
button p:before {
|
52 |
+
font-family: 'Font Awesome 5 Free';
|
53 |
+
content: '\f07c';
|
54 |
+
display: inline-block;
|
55 |
+
padding-right: 3px;
|
56 |
+
vertical-align: middle;
|
57 |
+
font-weight: 900;
|
58 |
+
}
|
59 |
+
""",
|
60 |
+
):
|
61 |
+
st.button("View Folder")
|
62 |
+
|
63 |
+
with recycle_column
|
64 |
+
with stylable_container(
|
65 |
+
key="recycle_button",
|
66 |
+
css_styles=r"""
|
67 |
+
button p:before {
|
68 |
+
font-family: 'Font Awesome 5 Free';
|
69 |
+
content: '\f1b8';
|
70 |
+
display: inline-block;
|
71 |
+
padding-right: 3px;
|
72 |
+
vertical-align: middle;
|
73 |
+
font-weight: 900;
|
74 |
+
}
|
75 |
+
""",
|
76 |
+
):
|
77 |
+
st.button("Recycle App")
|
78 |
|
79 |
|
80 |
|