models.py
class image_upload(models.Model):
name = models.CharField(max_length=50)
image = models.ImageField(upload_to='images')
through form, I can able to upload the image but I want to access that uploaded image path in my views.py I don’t able to do that