{% if selected_monster %}
Possible Breeding Pairs for {{ selected_monster.name }}
Base
{% for combination in selected_monster.base_combinations %}
-
{{ combination }}
{% endfor %}
Mates
{% for combination in selected_monster.mate_combinations %}
-
{{ combination }}
{% endfor %}
{% endif %}