James McCool
commited on
Commit
·
71afcc9
1
Parent(s):
fa5ae10
Add table display for contest file helper in app.py
Browse files- Introduced a new st.table statement to display the first 500 entries of the contest file helper for better visibility of contest data.
- Maintained existing functionality for displaying the contest file while enhancing the user interface for data review.
app.py
CHANGED
@@ -96,7 +96,7 @@ with tab1:
|
|
96 |
st.session_state['Contest_file_helper'] = grab_contest_data(sport_select, contest_name_var, contest_id_map, date_select, date_select2)
|
97 |
else:
|
98 |
pass
|
99 |
-
|
100 |
if 'Contest_file' in st.session_state:
|
101 |
if 'Contest_file_helper' in st.session_state:
|
102 |
st.table(st.session_state['Contest_file'].head(10))
|
|
|
96 |
st.session_state['Contest_file_helper'] = grab_contest_data(sport_select, contest_name_var, contest_id_map, date_select, date_select2)
|
97 |
else:
|
98 |
pass
|
99 |
+
st.table(st.session_state['Contest_file_helper'].head(500))
|
100 |
if 'Contest_file' in st.session_state:
|
101 |
if 'Contest_file_helper' in st.session_state:
|
102 |
st.table(st.session_state['Contest_file'].head(10))
|