category challenges listed by point decrease

This commit is contained in:
ix 2021-09-08 21:50:28 +02:00
parent 4a2504be73
commit 2b49c995a0
1 changed files with 1 additions and 1 deletions

View File

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