Disable validation when calling form for the first time
问题 I am struggling a bit with my Django forms. When I call my form site, always validation errors appear (this field is required). I'd prefer to see this message after clicking the submit button, if a field is not filled like a javascript function would do. In addition I'm using regex for validation, which is working fine. I am working with CVBs. Here is some code: models.py class Institute(models.Model): name = models.CharField(max_length=50) timestamp = models.DateTimeField(auto_now_add=True)