{% for d20class, levels in spellbook.spells.items() %}
{% set d20class_loop = loop %}
{{ d20class }}
{% for level, spells in levels.items() %}
{% set level_loop = loop %}
Level {{ level }}
{% for spell in spells %}
{{ spell.name }}
{{ spell.rulebook }}
{{ d20class }} {{ level }}
{% if spell.verbal or spell.material or spell.somatic or spell.arcane_focus or spell.divine_focus or spell.xp_costs %}
Components
{% if spell.verbal %} V {% endif %}
{% if spell.somatic %} S {% endif %}
{% if spell.material %} M {% endif %}
{% if spell.arcane_focus %} AF {% endif %}
{% if spell.divine_focus %} DF {% endif %}
{% if spell.xp_costs %} XP {% endif %}