Compare commits

..

No commits in common. "f56322bd6e1cab8e4dab62ac0f7021b1be22f880" and "87efa03ed0ec9b612f7114806cb039d7682f2d71" have entirely different histories.

1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ def profile(request, user_name):
for s in solves.reverse():
somme += s.ctf.points
solved.append([s.flag_date.timestamp() * 1000,somme])
created = CTF.objects.filter(author=user_obj, event=None)
created = CTF.objects.filter(author=user_obj)
return render(request,'accounts/profile.html', {'user':user_obj, 'solves':solves,'solved':solved,'catsDatas': catsDatas, 'pointDatas': pointDatas,
'rank': rank, 'score' : somme, 'member' : member, 'cats':cats, 'created':created})