You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, Django does not validate model fields before saving. This can, however, be done using the full_clean() method.
Consider if we should validate model fields (in particular the Dataset model) when new instances are created (I have added a validator to the entry_id-field)
Implement model validation before save() (possibly using signals)