Compare commits

..

3 Commits

Author SHA1 Message Date
Starthur 5ee37f61cf
Remove old field 2022-08-01 22:15:58 +02:00
Starthur 3f82dd50bd
Check FK to print value in scoreboard 2022-08-01 22:15:42 +02:00
Starthur 121d06aff2
Order CTF by flags 2022-08-01 12:04:09 +02:00
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ def actualize_points(ctf):
def category(request, cat_slug):
cat = get_object_or_404(Category, slug=cat_slug)
ctfs = CTF.objects.filter(category=cat, event=None, disabled=False).order_by('points')
ctfs = CTF.objects.filter(category=cat, event=None, disabled=False).order_by('points', 'solved_num')
for ex in ctfs:
ex.solved_num = CTF_flags.objects.filter(ctf=ex).count()
ex.solved = ex.solved_by(request.user)