Top "Django-validation" questions

django-validation refers to form and field validation tools provided by Django out of the box

Validate specific field in DRF serializer

I have a model with a JSONField. model.py class Categories(models.Model): type = models.CharField(max_length=20) name = models.…

django python-3.x django-rest-framework django-validation
Django add custom form errors to form.errors

I want to write a form for registering a user. I want to implement a password match where the user …

django django-forms django-validation
How to validate a json object in django

I'm submitting a JSON to a django view with AJAX. The JSON looks like the following: { "code":"9910203040", // required "name":"Abc", // …

django django-validation
ValidationError or TypeError, ValueError - Exceptions

I am quite a newbie understanding of how to catch exceptions in python. I have a question regarding those two …

python django exception error-handling django-validation
How can I get the temporary name of an UploadedFile in Django?

I'm doing some file validation and want to load an UploadedFile into an external library while it is in the …

django django-validation django-file-upload