I\'ve got these models in my Django project:
class Area(models.Model): name = models.CharField(max_length=100, primary_key=True) def __unicode__(self
You can use the existing join template tag.
https://docs.djangoproject.com/en/1.10/ref/templates/builtins/#join
Here's the code
{% for place in places %} Name: {{ place.name }}, Area: {{ place.area.all|join:", " }} {% endfor %}