{% for key,value in result_dict.items() %} {% if key == "Scientific classification" %}

{{ key }}

{% for kk,vv in value.items() %}

{{ kk }}:{{ vv|safe }}

{% endfor %}
{% endif %} {% endfor %}
{% for key,value in result_dict.items() %} {% if key != "Scientific classification" %}

{{ key }}

{{ value|safe }}

{% endif %} {% endfor %}