mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-08-02 17:25:05 +02:00
Renamed AdminPages/ templates folder to recommended snake_case style
This commit is contained in:
parent
1559b669df
commit
a128f40358
32 changed files with 32 additions and 32 deletions
27
templates/admin/base_company_admin.html.twig
Normal file
27
templates/admin/base_company_admin.html.twig
Normal file
|
@ -0,0 +1,27 @@
|
|||
{% extends "admin/base_admin.html.twig" %}
|
||||
|
||||
{% block additional_controls %}
|
||||
{{ form_row(form.address) }}
|
||||
{{ form_row(form.phone_number) }}
|
||||
{{ form_row(form.fax_number) }}
|
||||
{{ form_row(form.email_address) }}
|
||||
{{ form_row(form.website) }}
|
||||
{{ form_row(form.auto_product_url) }}
|
||||
{% endblock %}
|
||||
|
||||
{% block comment %}{% endblock %}
|
||||
|
||||
{% block additional_pills %}
|
||||
<li class="nav-item"><a data-bs-toggle="tab" class="nav-link link-anchor" href="#home_advanced">{% trans %}admin.advanced{% endtrans %}</a></li>
|
||||
{% endblock %}
|
||||
|
||||
{% block additional_panes %}
|
||||
<div class="tab-pane" id="home_advanced">
|
||||
{{ form_row(form.comment) }}
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
{% block quick_links %}
|
||||
{% import "components/quick_links.macro.html.twig" as quick_links %}
|
||||
{{ quick_links.company(entity) }}
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue