From b2d18d33e00415f45935f11610fc9f3eef2348b3 Mon Sep 17 00:00:00 2001 From: virusdefender <1670873886@qq.com> Date: Thu, 24 Sep 2015 21:25:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=A8=A1=E6=9D=BF=E5=90=8D?= =?UTF-8?q?=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- contest/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contest/views.py b/contest/views.py index 3d5ff51..ade1407 100644 --- a/contest/views.py +++ b/contest/views.py @@ -385,7 +385,7 @@ def contest_rank_page(request, contest_id): contest = Contest.objects.get(id=contest_id) contest_problems = ContestProblem.objects.filter(contest=contest).order_by("sort_index") rank = ContestRank.objects.filter(contest_id=contest_id).order_by("-total_ac_number", "total_time") - return render(request, "oj/contest/contest_rank_new.html", + return render(request, "oj/contest/contest_rank.html", {"rank": rank, "contest": contest, "contest_problems": contest_problems, "auto_refresh": request.GET.get("auto_refresh", None) == "true",