Patch, když jsou bez řešení

This commit is contained in:
Pavel "LEdoian" Turinsky 2020-10-27 23:50:05 +01:00
parent beba4c5062
commit 797256fcfe

View file

@ -50,14 +50,18 @@ class TabulkaOdevzdanychReseniView(TemplateView):
hodnoceni__problem__in=[problem], # ditto
).order_by('-cas_doruceni')
pocet_reseni = reseni_k_tomuto_problemu.count()
nejnovejsi = reseni_k_tomuto_problemu.first().cas_doruceni
pocet_bodu = max(
[h.body for h in m.Hodnoceni.objects.filter(
reseni__in=reseni_k_tomuto_problemu,
problem=problem,
)
]
)
if pocet_reseni > 0:
nejnovejsi = reseni_k_tomuto_problemu.first().cas_doruceni
pocet_bodu = max(
[h.body for h in m.Hodnoceni.objects.filter(
reseni__in=reseni_k_tomuto_problemu,
problem=problem,
)
]
)
else:
nejnovejsi = None
pocet_bodu = None
ctx['radky'][resitel].append(
SouhrnReseni(
pocet_reseni=pocet_reseni,