I have something like:
{% for mother in mothers_list %}
{% for father in fathers_list %}
{% Child.objects.get(mother=mother, father=father) as child %}
child.name
Unfortunately, I can't call a function with parameters from the template, so this line
{% Child.objects.get(mother=mother, father=father) as child %}
wont work. Any ideas of how how can I get the Child object each time?