1👍
in the template you have
{% for child in data.child_set.all.all %}
the second .all might be causing the issue, child_set is a query set and .all should be sufficient.
Source:stackexchange.com
1👍
in the template you have
{% for child in data.child_set.all.all %}
the second .all might be causing the issue, child_set is a query set and .all should be sufficient.