+
+
{{ form_start(form_location_update, {
'method': 'POST',
'action': path('ibexa.location.update'),
'attr': {'class': 'form-inline ibexa-form-inline justify-content-start'}
}) }}
-
+
{{ form_label(form_location_update.sort_field, 'tab.details.sub_items_listing_by.order_by'|trans|desc('Order by')) }}
{{ form_widget(form_location_update.sort_field, { 'attr': {'class': 'ibexa-form-autosubmit ml-2'} }) }}
-
+
{{ form_label(form_location_update.sort_order, 'tab.details.sub_items_listing_by.in'|trans|desc('in')) }}
{{ form_widget(form_location_update.sort_order, { 'attr': {'class': 'ibexa-form-autosubmit ml-2'} }) }}
-
+
{% do form_location_update.update.setRendered() %}
{{ form_end(form_location_update) }}
diff --git a/src/bundle/Resources/views/themes/admin/content/tab/translations/tab.html.twig b/src/bundle/Resources/views/themes/admin/content/tab/translations/tab.html.twig
index 5db8da0f66..ef431c63b6 100644
--- a/src/bundle/Resources/views/themes/admin/content/tab/translations/tab.html.twig
+++ b/src/bundle/Resources/views/themes/admin/content/tab/translations/tab.html.twig
@@ -29,9 +29,14 @@
{% set body_row_cols = body_row_cols|merge([
{ content: translation.name },
- { content: translation.languageCode },
]) %}
+ {% if ibexa_is_expert_mode() %}
+ {% set body_row_cols = body_row_cols|merge([
+ { content: translation.languageCode }
+ ]) %}
+ {% endif %}
+
{% if main_translation_switch %}
{% set col_raw %}
diff --git a/src/bundle/Resources/views/themes/admin/ui/form_fields.html.twig b/src/bundle/Resources/views/themes/admin/ui/form_fields.html.twig
index 0c5aadbce5..078929f6c5 100644
--- a/src/bundle/Resources/views/themes/admin/ui/form_fields.html.twig
+++ b/src/bundle/Resources/views/themes/admin/ui/form_fields.html.twig
@@ -67,9 +67,9 @@
{%- endfor -%}
{%- endblock -%}
-{%- block search_widget -%}
+{%- block search_widget -%}
{% set has_search = true %}
-
+
{{ block('form_widget_simple') }}
{%- endblock -%}
@@ -554,3 +554,12 @@
{%- endblock -%}
+
+{% block user_mode_toggle_widget %}
+ {% set label_on = 'user.mode.expert'|trans({}, 'ibexa_admin_ui')|desc('Expert mode') %}
+ {% set label_off = 'user.mode.smart'|trans({}, 'ibexa_admin_ui')|desc('Smart mode') %}
+ {% set small = true %}
+ {% set checked = ibexa_is_expert_mode() %}
+
+ {{ block('toggle_widget') }}
+{% endblock %}
diff --git a/src/bundle/Resources/views/themes/admin/ui/menu/user.html.twig b/src/bundle/Resources/views/themes/admin/ui/menu/user.html.twig
index 9949032b17..2e0e02c2ab 100644
--- a/src/bundle/Resources/views/themes/admin/ui/menu/user.html.twig
+++ b/src/bundle/Resources/views/themes/admin/ui/menu/user.html.twig
@@ -6,9 +6,9 @@