mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2026-01-11 12:49:33 +00:00
Ermöglicht benutzerdefinierte Synonyme für Datenquellen basierend auf Locale. Synonyme werden in verschiedenen Bereichen wie Bäumen, Übersetzungen und Vorlagen genutzt, um anpassbare Namen anzuzeigen.
43 lines
No EOL
1.6 KiB
Twig
43 lines
No EOL
1.6 KiB
Twig
{% extends "admin/base_admin.html.twig" %}
|
|
{% import "label_system/dropdown_macro.html.twig" as dropdown %}
|
|
|
|
{% block card_title %}
|
|
{% set dataSourceName = get_data_source_name('storagelocation', 'storelocation.labelp') %}
|
|
{% set translatedSource = 'storelocation.labelp'|trans %}
|
|
<i class="fas fa-cube fa-fw"></i> {% if dataSourceName != translatedSource %}{{ 'datasource.synonym'|trans({'%name%': translatedSource, '%synonym%': dataSourceName}) }}{% else %}{{ translatedSource }}{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block additional_controls %}
|
|
{% if entity.id %}
|
|
<div class="row form-group">
|
|
<div class="offset-sm-3 col-sm-9">
|
|
{{ dropdown.profile_dropdown('storelocation', entity.id) }}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block additional_pills %}
|
|
<li class="nav-item"><a data-bs-toggle="tab" class="nav-link link-anchor" href="#home_options">{% trans %}admin.options{% endtrans %}</a></li>
|
|
{% endblock %}
|
|
|
|
{% block additional_panes %}
|
|
<div class="tab-pane" id="home_options">
|
|
{{ form_row(form.alternative_names) }}
|
|
|
|
{{ form_row(form.storage_type) }}
|
|
{{ form_row(form.is_full) }}
|
|
{{ form_row(form.limit_to_existing_parts) }}
|
|
{{ form_row(form.only_single_part) }}
|
|
{{ form_row(form.owner) }}
|
|
{{ form_row(form.part_owner_must_match) }}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block edit_title %}
|
|
{% trans %}storelocation.edit{% endtrans %}: <a href="{{ path('part_list_store_location', {'id': entity.id}) }}">{{ entity.name }}</a>
|
|
{% endblock %}
|
|
|
|
{% block new_title %}
|
|
{% trans %}storelocation.new{% endtrans %}
|
|
{% endblock %} |