[Answered ]-How to access multiple layers of ManyToManyField in template?

2👍

boards is the ManyToMany, so there are many scoreboards to each match. So, you need to iterate through them.

{% for active in matches %}
  {{ active }}:
  {% for board in active.boards.all %}
      {{ board.user }}
  {% endfor %}
{% endfor %}

Leave a comment