I\'d like to add js validation to my forms, and that validation should be done without requests to my server.
So, say, I open a page with form, make some errors and
I also thought about it and I found Django-parsley: https://github.com/agiliq/Django-parsley. It uses parsleyjs which is one the best js libraries for form validation.
I looked at it and I'm still not satisfied since it doesn't give enough flexibility in the client side. At the end of the day I think I will be WET (write everything twice) so I'll have flexibility and I could do exactly what I want in the client side.