Table css

This commit is contained in:
cuom1999 2024-05-02 19:13:19 -05:00
parent cad679ad90
commit 8ff0f369a6
7 changed files with 18 additions and 10 deletions

View file

@ -964,7 +964,7 @@ class ContestStats(TitleMixin, ContestMixin, DetailView):
ContestRankingProfile = namedtuple(
"ContestRankingProfile",
"id user points cumtime tiebreaker participation "
"id user username points cumtime tiebreaker participation "
"participation_rating problem_cells result_cell",
)
@ -985,6 +985,7 @@ def make_contest_ranking_profile(
return ContestRankingProfile(
id=user.id,
user=user,
username=user.username,
points=points,
cumtime=cumtime,
tiebreaker=participation.tiebreaker,