mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-07-24 21:05:03 +02:00
15 lines
503 B
Twig
15 lines
503 B
Twig
{{ form_row(form.name) }}
|
|
{% if part.category is not null and part.category.partnameHint is not empty %}
|
|
<div class="row">
|
|
<div class="col-sm-9 offset-sm-3">
|
|
<p class="form-text help-text"><b>{% trans %}part.edit.name.category_hint{% endtrans %}:</b> {{ part.category.partnameHint }}</p>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{{ form_row(form.description) }}
|
|
{{ form_row(form.category) }}
|
|
{{ form_row(form.tags) }}
|
|
{{ form_row(form.minAmount) }}
|
|
|
|
{{ form_row(form.footprint) }}
|
|
|