Add custom KiCad autocomplete list settings

This commit is contained in:
DanTrackpaw 2026-04-10 13:19:30 +02:00
parent 2d37330155
commit 955e622c1a
12 changed files with 231 additions and 24 deletions

View file

@ -10,8 +10,19 @@
</p>
{{ form_start(form) }}
{{ form_row(form.footprints) }}
{{ form_row(form.symbols) }}
{{ form_row(form.useCustomList) }}
<div class="row g-3">
<div class="col-12 col-xl-6">
{{ form_row(form.customFootprints) }}
{{ form_row(form.customSymbols) }}
</div>
<div class="col-12 col-xl-6">
{{ form_row(form.defaultFootprints) }}
{{ form_row(form.defaultSymbols) }}
</div>
</div>
{{ form_row(form.save) }}
{{ form_end(form) }}
{% endblock %}