Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +2 -3
src/streamlit_app.py
CHANGED
|
@@ -50,9 +50,8 @@ def main():
|
|
| 50 |
"Upload a monthly admissions report, filter by district/course, and explore "
|
| 51 |
"KPIs, interactive tables, and rich visualizations."
|
| 52 |
)
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
uploaded = pd.ExcelFile('src/Dataset.xlsx')
|
| 56 |
if not uploaded:
|
| 57 |
st.sidebar.info("Awaiting your Excel file…")
|
| 58 |
return
|
|
|
|
| 50 |
"Upload a monthly admissions report, filter by district/course, and explore "
|
| 51 |
"KPIs, interactive tables, and rich visualizations."
|
| 52 |
)
|
| 53 |
+
|
| 54 |
+
uploaded = st.sidebar.file_uploader("🔄 Upload Monthly Report (Excel)", type="xlsx")
|
|
|
|
| 55 |
if not uploaded:
|
| 56 |
st.sidebar.info("Awaiting your Excel file…")
|
| 57 |
return
|