feat: 팜레스트→실용성상, 마무리 문구 '수고하셨습니다!'

- 가격 순 매칭: 팜레스트(최고가)→실용성상, 양우산→완성도상, 손선풍기→재미상
- ceremony 마지막 화면: '모든 시상 완료' → '수고하셨습니다!'

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
th-kim0823
2026-04-25 19:57:09 +09:00
parent b047c589d8
commit d581f4e8e7

6
app.py
View File

@@ -33,8 +33,8 @@ TEAMS = sorted(set(PARTICIPANTS.values())) if PARTICIPANTS else [
CATEGORIES = [ CATEGORIES = [
("fun_team", "🎉 재미상", "손선풍기 5개"), ("fun_team", "🎉 재미상", "손선풍기 5개"),
("polish_team", "🏆 완성도상", "팜레스트 5개"), ("polish_team", "🏆 완성도상", "양우산 5개"),
("utility_team", "🛠 실용성상", "양우산 5개"), ("utility_team", "🛠 실용성상", "팜레스트 5개"),
] ]
@@ -310,7 +310,7 @@ def render_ceremony():
st.rerun() st.rerun()
elif step > len(results): elif step > len(results):
st.markdown('<div class="stage-title">🎊 모든 시상 완료 🎊</div>', unsafe_allow_html=True) st.markdown('<div class="stage-title">수고하셨습니다!</div>', unsafe_allow_html=True)
st.balloons() st.balloons()
st.snow() st.snow()
if st.button("처음으로", use_container_width=True): if st.button("처음으로", use_container_width=True):