Jon Solow commited on
Commit
fffd0cd
·
1 Parent(s): f688cd1

Add instructions

Browse files
src/pages/80_Maximum_Roster_Strategy.py CHANGED
@@ -107,6 +107,18 @@ def get_page():
107
  st.set_page_config(page_title=page_title, page_icon=DEFAULT_ICON, layout="wide")
108
  common_page_config()
109
  st.title(page_title)
 
 
 
 
 
 
 
 
 
 
 
 
110
  col_select, week_select = st.columns(2, gap="small")
111
  with col_select:
112
  position = st.selectbox(label="Position", options=POSITION_OPTIONS, index=0)
 
107
  st.set_page_config(page_title=page_title, page_icon=DEFAULT_ICON, layout="wide")
108
  common_page_config()
109
  st.title(page_title)
110
+
111
+ with st.expander(label="Instructions"):
112
+ st.write(
113
+ """
114
+ To get started with MRS: https://solowfantasyfootball.wordpress.com/2023/09/07/maximum-roster-strategy-explained/
115
+
116
+ Players are organized by game time slot, position, and tier.
117
+
118
+ Pick up a player during their game's time slot for potential upside if particular circumstances are met.
119
+
120
+ After the game, players will be colored by outcome: Drop (Red), Light Hold (Yellow), or Strong Hold (Green)."""
121
+ )
122
  col_select, week_select = st.columns(2, gap="small")
123
  with col_select:
124
  position = st.selectbox(label="Position", options=POSITION_OPTIONS, index=0)