manytomany object for loop
Nested for loop
Tags
{% for item in tutorials %}
{% for tag in item.tags.all %}
{{ tag }}
{% endfor %}
{% endfor %}
<h4>4 tutorial -> core.CurriculumItem.None / .all is the key </h4>
{% for item in curriculum.tutorial.all %}
{{ item.title }}
<br>
{{ item.instructor }}
<br>
{{ item.link }}
{% endfor %}
{% for item in tutorials %}
<tr>
<td><button class="btn btn-warning search_btn" type="submit"> Add </button></td>
<td><a href="{% url 'hub:tutorial_detail' item.pk %}">{{item.title}}</a></td>
<td>{{item.instructor}}</td>
<td>
{% for tag in item.tags.all %}
{{ tag }}
{% endfor %}
</td>
<td>{{item.last_updated}}</td>
<td>{{item.difficulty}}</td>
<td>{{item.language}}</td>
<td>{{item.duration}}</td>
Author And Source
이 문제에 관하여(manytomany object for loop), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@daylee/django-manytomany-object-for-loop저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)