debate_LMS / src /views /dashboard.py
raymondEDS
adding week 1 homework.
b276f60
raw
history blame contribute delete
977 Bytes
import streamlit as st
def show_dashboard():
"""Show the main dashboard"""
st.title("๐Ÿ“Š Debate Class Dashboard")
st.markdown("---")
# Welcome message
st.markdown(f"### Welcome back, {st.session_state.name}!")
st.markdown("This is your central hub for all debate class activities and materials.")
# Current week information
st.subheader("๐Ÿ“… Current Week")
st.markdown("**Week 1: Introduction to Debate**")
st.markdown("We are currently in Week 1 of the debate course.")
st.markdown("---")
# Quick access to current week
st.subheader("๐ŸŽฏ This Week's Focus")
with st.container():
st.markdown("""
**Week 1: Introduction to Debate**
- Understanding debate formats
- Basic argument structure
- Public speaking fundamentals
""")
if st.button("Go to Week 1 Content", type="primary", key="dashboard_week1_button"):
st.rerun()