tex-upload: fix čísla řešení
This commit is contained in:
parent
4460a048ec
commit
7bd8330e26
1 changed files with 7 additions and 1 deletions
|
@ -841,7 +841,13 @@ def texUploadView(request):
|
||||||
|
|
||||||
if meta["typ"] == "reseni":
|
if meta["typ"] == "reseni":
|
||||||
problem.text_reseni = html
|
problem.text_reseni = html
|
||||||
problem.cislo_reseni = meta["cislo_reseni"]
|
|
||||||
|
# Pokud ročník/číslo ještě neexistuje, vyhodí to výjimku ->
|
||||||
|
# číslo/ročník se musí založit ručně v adminu
|
||||||
|
problem.cislo_reseni = Cislo.objects.get(
|
||||||
|
rocnik=rocnik,
|
||||||
|
cislo=meta["cislo_reseni"]
|
||||||
|
)
|
||||||
# při nahrávání řešení už původní zadání atd. neměníme
|
# při nahrávání řešení už původní zadání atd. neměníme
|
||||||
else:
|
else:
|
||||||
problem.text_zadani = html
|
problem.text_zadani = html
|
||||||
|
|
Loading…
Reference in a new issue