Django doesn't validate on create?
From Django's doc, it says that you need to explicitly call model validation related methods i.e., full_clean, clean
, for model validation to take effect.
You can follow the examples available in Django documentation to implement your own validation sequence in your model.