Fix organizátor musel mít vyplněné organizuje od / do, jinak vyhazovalo chybnou chybu
This commit is contained in:
parent
80d608eb53
commit
6491d63714
1 changed files with 1 additions and 1 deletions
|
@ -582,7 +582,7 @@ class Organizator(SeminarModelBase):
|
|||
"školu, ale jen obor, možnost zobrazit zvlášť")
|
||||
|
||||
def clean(self):
|
||||
if self.organizuje_od > self.organizuje_do:
|
||||
if self.organizuje_od and self.organizuje_do and (self.organizuje_od > self.organizuje_do):
|
||||
raise ValidationError("Organizátor nemůže skončit s organizováním dříve než začal!")
|
||||
super().clean()
|
||||
|
||||
|
|
Loading…
Reference in a new issue