Merge branch 'tex-upload'
This commit is contained in:
commit
4a0a138dc8
1 changed files with 7 additions and 1 deletions
|
@ -874,7 +874,13 @@ def texUploadView(request):
|
|||
|
||||
if meta["typ"] == "reseni":
|
||||
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
|
||||
else:
|
||||
problem.text_zadani = html
|
||||
|
|
Loading…
Reference in a new issue