I am trying to create a simple django project, with the following model:
class dealerinfo(models.Model):
name = models.CharField(max_length=255)
required_field_1 = models.ImageField()
required_field_2= models.ImageField()
How to create a django app that after a user logs in to upload the required files required_field_1 and required_field_2.
Thank you for your suggestions and help