{% set data = data['NATURAL POPULATIONS: Natural atomic orbital occupancies']%}

Natural Atomic Orbital Occupancies

{% for key, records in data.items() %}

{{ key }}

Number of records: {{ records|length }}

{# add table for each record #} {% for record in records %} {% endfor %}
NAO Atom No lang Type(AO) Occupancy Energy
{{ record['NAO'] }} {{ record['Atom'] }} {{ record['No'] }} {{ record['lang'] }} {{ record['Type(AO)'] }} {{ record['Occupancy'] }} {{ record['Energy'] }}
{% endfor %}