//My template is only displaying the parent table, and not displaying child table
<!-- <div class="container">
<div class="row">
<div class="table-responsive">
<table class="table table-striped table-bordered table-dark text-center">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col"> </th>
<th scope="col">User</th>
<th scope="col"> </th>
<th scope="col">Weekly Goals</th>
<th scope="col">Daily Goals</th>
<th scope="col">Verify</th>
<th scope="col">Done</th>
</tr>
</thead>
{% for user in my_users %}
<tbody>
<tr>
<th scope="row">{{ forloop.counter }}</th>
<td><a href="#"><i style="color:#FFF" class="far fa-plus-square"></i></a></td>
<td>{{ user.fullname }}</td>
<td><a href="#"><i style="color:#FFF" class="far fa-plus-square"></i></a></td>
{% for goal in my_users.scrumygoals_set.all %}
<td>{{ goal.goal_description }}</td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
{% endfor %}
{% endfor %}
</table>
</div>
</div>
</div>
{% endblock %}
Enter code here...