File size: 289 Bytes
d03e822
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from navigation import make_sidebar
import streamlit as st
from time import sleep
import yaml

make_sidebar()

if st.session_state["admin_job"]:
    with open(f'data/jobs/individual/{st.session_state.admin_job}/status.yaml', 'r') as file:
    
        jobs_info = yaml.safe_load(file)