mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-19 12:33:27 +02:00
17 lines
485 B
TeX
17 lines
485 B
TeX
\section*{Subclasses}
|
|
[% if use_dnd_decorations %]
|
|
[% for sc in character.subclasses if sc not in ['', None, 'None', 'none']%]
|
|
\DndFeatHeader{[[ sc.name ]]} % Would like to add source here
|
|
|
|
[[ sc.__doc__ | rst_to_latex(top_heading_level=2) ]]
|
|
|
|
[% endfor %]
|
|
[% else %]
|
|
[% for sc in character.subclasses if sc not in ['', None, 'None', 'none']%]
|
|
|
|
\subsection*{[[ sc.name ]]}
|
|
|
|
[[ sc.__doc__ | rst_to_latex(top_heading_level=2) ]]
|
|
|
|
[% endfor %]
|
|
[% endif %] |