Razeni uloh a temat podle kodu

This commit is contained in:
Bc. Petr Pecha 2015-09-10 11:31:25 +02:00
parent c19167a197
commit bba1249fc9

View file

@ -18,9 +18,9 @@ from itertools import groupby
def AktualniZadaniView(request):
nastaveni = get_object_or_404(Nastaveni)
problemy = Problem.objects.filter(cislo_zadani=nastaveni.aktualni_cislo).filter(stav = 'zadany')
ulohy = problemy.filter(typ = 'uloha')
serialy = problemy.filter(typ = 'serial')
temata = problemy.filter(typ = 'tema')
ulohy = problemy.filter(typ = 'uloha').order_by('kod')
serialy = problemy.filter(typ = 'serial').order_by('kod')
temata = problemy.filter(typ = 'tema').order_by('kod')
jednorazove_problemy = [ulohy, serialy]
return render(request, 'seminar/zadani/AktualniZadani.html',
{'nastaveni': nastaveni,