Django: show a ManyToManyField in a template?

后端 未结 3 1831
别跟我提以往
别跟我提以往 2020-12-01 01:23

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         


        
3条回答
  •  一个人的身影
    2020-12-01 02:00

    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 %}
    

提交回复
热议问题