File size: 1,939 Bytes
cd87ae5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 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 | import streamlit as st
# Page configuration
st.set_page_config(
page_title="Supply Roster Tool",
page_icon="π ",
layout="wide",
initial_sidebar_state="expanded"
)
# Initialize session state for shared variables
if 'data_path' not in st.session_state:
st.session_state.data_path = "data/my_roster_data"
if 'target_date' not in st.session_state:
st.session_state.target_date = ""
# Main page content
st.title("π Supply Roster Optimization Tool")
st.markdown("---")
# Welcome section
col1, col2 = st.columns([1, 1])
with col1:
st.markdown("""
## π Welcome to Supply Roster Tool
""")
with col2:
st.image("images/POC_page/POC_SupplyRoster_image.png",
caption="Supply Roster Tool Overview",
use_container_width=True)
# Global settings in sidebar
with st.sidebar:
st.markdown("## π Global Settings")
st.markdown("The setting will be shared across all pages")
# Data path setting
new_data_path = st.text_input(
"π Data Path",
value=st.session_state.data_path,
help="The data path will be shared across all pages"
)
if new_data_path != st.session_state.data_path:
st.session_state.data_path = new_data_path
st.success("β
Data path updated!")
st.markdown(f"**Current data path:** `{st.session_state.data_path}`")
# Quick navigation
st.markdown("## π§ Quick Navigation")
if st.button("π― Go to Optimization", use_container_width=True):
st.switch_page("pages/optimize_viz.py")
if st.button("π Go to Dataset Overview", use_container_width=True):
st.switch_page("pages/metadata.py")
# Main content area
st.markdown("---")
# Footer
st.markdown("---")
st.markdown("""
<div style='text-align: center; color: gray;'>
<small>Supply Roster Optimization Tool | Built with Streamlit</small>
</div>
""", unsafe_allow_html=True) |