Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -20,6 +20,18 @@ st.sidebar.image(
|
|
20 |
use_column_width=True
|
21 |
)
|
22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
with st.container():
|
25 |
st.markdown("<h1 style='text-align: center; color: black;'> Policy Action Tracking</h1>", unsafe_allow_html=True)
|
|
|
20 |
use_column_width=True
|
21 |
)
|
22 |
|
23 |
+
st.sidebar.title(
|
24 |
+
"Chapters browser"
|
25 |
+
)
|
26 |
+
|
27 |
+
st.sidebar.markdown(
|
28 |
+
"You can freely browse the different chapters - ie example prompts from different people - and see the results."
|
29 |
+
)
|
30 |
+
|
31 |
+
selected_date = st.sidebar.selectbox(
|
32 |
+
"Please select the chapter you want to read:",
|
33 |
+
['c1','c2']
|
34 |
+
)
|
35 |
|
36 |
with st.container():
|
37 |
st.markdown("<h1 style='text-align: center; color: black;'> Policy Action Tracking</h1>", unsafe_allow_html=True)
|