{% for d20class, levels in spellbook.spells|dictsort %}
{% set d20class_loop = loop %}
{{ d20class }}
{% for level, spells in levels|dictsort %}
{% set level_loop = loop %}
Level {{ level }}
{% for spell in spells %}
{{ spell.name }}
{{ spell.rulebook }}
{{ d20class }} {{ level }}
{{ spell.school }}
{% if spell.subschool %}
{{ spell.subschool }}
{% endif %}
{%- if spell.descriptors -%}
{%- for d in spell.descriptors -%}
{% if loop.first -%}
[
{%- endif -%}
{{d.name}}
{%- if loop.last -%}
]
{%- else -%}
,
{%- endif -%}
{%- endfor%}
{% endif %}
{% 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 %}