How to access the image path which is uploaded

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

See the docs for Managing files.