{% extends "base.html" %} {% from "list.html" import build_list %} {% block content %} {{ build_list(c) }}
{% for stat in ['str', 'dex', 'con', 'int', 'wis', 'cha'] %}
{{ c.form[stat].label }}
{{ c.form[stat] }}
{% endfor %}
AC
{{ c.form.armor_class }}
  • Initiative: 3
  • Proficiency Bonus:
  • Spell Save DC:
  • Saving Throws: {{ c.record.saving_throws |join(', ') }}
  • Skills: {{ c.record.skills |join(', ') }}
  • {% for field in c.form %} {% if field.name in ['proficiencies', 'speed', 'passive_perception', 'passive_insight', 'passive_investigation'] %}
  • {{ field.label }}: {{ field }} {{ field.errors|join(',') }}
  • {% endif %} {% endfor %}

{{ c.form.save }}   {{ c.form.delete }}
{{ c.form.csrf_token }} {% endblock %} {% block debug %}

Debug

{{ c }} {% endblock %} {% block script %} {% endblock %}