James McCool commited on
Commit ·
295c980
1
Parent(s): 87b0cd7
Position selection
Browse files
app.py
CHANGED
|
@@ -789,6 +789,8 @@ if selected_tab == 'Contest Analysis':
|
|
| 789 |
pos_select = st.multiselect("Select your position(s)", ['All the same position', 'So', 'Yeah', 'Idk'], key='pos_select')
|
| 790 |
elif st.session_state['sport_select'] == 'NAS':
|
| 791 |
pos_select = st.multiselect("Select your position(s)", ['All the same position', 'So', 'Yeah', 'Idk'], key='pos_select')
|
|
|
|
|
|
|
| 792 |
elif st.session_state['sport_select'] == 'CFB':
|
| 793 |
pos_select = st.multiselect("Select your position(s)", ['QB', 'RB', 'WR'], key='pos_select')
|
| 794 |
submitted = st.form_submit_button("Submit")
|
|
|
|
| 789 |
pos_select = st.multiselect("Select your position(s)", ['All the same position', 'So', 'Yeah', 'Idk'], key='pos_select')
|
| 790 |
elif st.session_state['sport_select'] == 'NAS':
|
| 791 |
pos_select = st.multiselect("Select your position(s)", ['All the same position', 'So', 'Yeah', 'Idk'], key='pos_select')
|
| 792 |
+
elif st.session_state['sport_select'] == 'TEN':
|
| 793 |
+
pos_select = st.multiselect("Select your position(s)", ['All the same position', 'So', 'Yeah', 'Idk'], key='pos_select')
|
| 794 |
elif st.session_state['sport_select'] == 'CFB':
|
| 795 |
pos_select = st.multiselect("Select your position(s)", ['QB', 'RB', 'WR'], key='pos_select')
|
| 796 |
submitted = st.form_submit_button("Submit")
|