James McCool commited on
Commit
e83065b
·
1 Parent(s): 8a1a164

Update markdown formatting in app.py to enhance the display of salary, median, and ownership percentage, improving clarity and user engagement in the lineup summary.

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -1034,7 +1034,9 @@ with tab4:
1034
 
1035
  with col3:
1036
  st.markdown(
1037
- ":violet-badge[:material/payments: Salary] :green-badge[:material/mode_heat: Median] :blue-badge[:material/percent: Own%]"
 
 
1038
  )
1039
 
1040
  # Optionally, add a button to clear the lineup
 
1034
 
1035
  with col3:
1036
  st.markdown(
1037
+ f"**💰 Salary:** `${round(total_salary, 0)}`   "
1038
+ f"**🔥 Median:** `{round(total_median, 2)}`   "
1039
+ f"**📊 Own%:** `{round(total_own, 2)}`"
1040
  )
1041
 
1042
  # Optionally, add a button to clear the lineup