mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2026-04-16 19:39:36 +00:00
* Add admin editor for KiCad autocomplete lists * Add custom KiCad autocomplete list settings * Ignore the footprints_custom.txt and symbols_custom.txt in git and create them on the fly if needed Otherwise it breaks the update mechanism * Added comments * Include kicad custom files in config backup command --------- Co-authored-by: Jan Böhmer <mail@jan-boehmer.de>
28 lines
893 B
Twig
28 lines
893 B
Twig
{% extends "main_card.html.twig" %}
|
|
|
|
{% block title %}{% trans %}settings.misc.kicad_eda.editor.title{% endtrans %}{% endblock %}
|
|
|
|
{% block card_title %}<i class="fa-solid fa-pen-to-square fa-fw"></i> {% trans %}settings.misc.kicad_eda.editor.title{% endtrans %}{% endblock %}
|
|
|
|
{% block card_content %}
|
|
<p class="text-muted">
|
|
{% trans %}settings.misc.kicad_eda.editor.description{% endtrans %}
|
|
</p>
|
|
|
|
{{ form_start(form) }}
|
|
{{ 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 %}
|