From fcfabb1bf4f418cf8f3bb70bd6e0d1b36aa8b63e Mon Sep 17 00:00:00 2001 From: "Pavel \"LEdoian\" Turinsky" Date: Wed, 30 Jun 2021 04:04:14 +0200 Subject: [PATCH] =?UTF-8?q?Orgorozcestn=C3=ADk:=20po=C4=8Det=20neopraven?= =?UTF-8?q?=C3=BDch=20=C5=99e=C5=A1en=C3=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- seminar/templates/seminar/orgorozcestnik.html | 7 ++++++- seminar/views/views_all.py | 3 +++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/seminar/templates/seminar/orgorozcestnik.html b/seminar/templates/seminar/orgorozcestnik.html index 3ad954a1..c24ca05d 100644 --- a/seminar/templates/seminar/orgorozcestnik.html +++ b/seminar/templates/seminar/orgorozcestnik.html @@ -27,7 +27,12 @@
  • přidat pdf k opravám
  • -
  • zadávání bodů
  • +
  • + zadávání bodů + {% if pocet_neobodovanych_reseni > 0 or pocet_reseni_mimo_cislo > 0 %} + ({{pocet_neobodovanych_reseni}} řešení nemá body, {{pocet_reseni_mimo_cislo}} není v žádném čísle!) + {% endif %} +
  • poslední vydané číslo

  • diff --git a/seminar/views/views_all.py b/seminar/views/views_all.py index a05ac356..e10aad6c 100644 --- a/seminar/views/views_all.py +++ b/seminar/views/views_all.py @@ -843,6 +843,9 @@ class OrgoRozcestnikView(TemplateView): # pokud nechceme haluzit kód (= poradi) dalšího čísla, bude asi potřeba jít # přes treenody (a dát si přitom pozor na MezicisloNode) + context['pocet_neobodovanych_reseni'] = s.Hodnoceni.objects.filter(body__isnull=True).count() + context['pocet_reseni_mimo_cislo'] = s.Hodnoceni.objects.filter(cislo_body__isnull=True).count() + u = self.request.user os = s.Osoba.objects.get(user=u) organizator = s.Organizator.objects.get(osoba=os)