[Answer]-Display the content of many to many fields in django template

1👍

Given the thema object, if you want to display the many to many fields,

{% for topic in thema %}
    {{topic.topic}}
    {% for lo in topic.learningObjectivesTopic.all %}
        {{lo.learningObjectivesTopic}}
    {% endfor %}
{% endfor %}

Leave a comment