from django.db import models
from cloudinary.models import CloudinaryField
class photos(models.Model):
# title field
title = models.CharField(max_length=100)
#image field
image = CloudinaryField('image')
Now When Save model image store in cloude
How To Show Html Template
same way to default django template
<!-- loop through all the images -->
{% for pic in photo %}
<h2>{{pic.title}}</h2>
<img src="{{pic.image.url}}" alt="fish">
{% endfor %}