[Answer]-Inquery about validation in Django

1👍

1) use models with all fileds as balnk=True and null=True, and create a simple form without any validation methods.

2)Yes, you can use javascript/jquery to validate your forms and it has nothing to do with django. you can submit the form by two methods,

a) Normal form post

b) Ajax post,

$.post("url",$(formid).serialize());

Leave a comment