src/Cms/TenantBundle/Resources/views/Dashboard/Settings/locale.html.twig line 1

Open in your IDE?
  1. {% extends '@ui/dashboards/system.html.twig' %}
  2. {% block header %}
  3.     {% include '@ui/common/headers/new.html.twig' with {
  4.         subtitle: 'Tenant Locale',
  5.         title: 'Custom locale settings for Tenant',
  6.         subtitleIcon: 'gears'
  7.     } %}
  8.     {% include '@CmsTenant/Dashboard/Settings/includes/navbar.html.twig' %}
  9. {% endblock %}
  10. {% block content %}
  11.     {% include '@ui/common/flash/default.html.twig' %}
  12.     {% embed '@ui/common/forms/new.html.twig' with { form: form } %}
  13.         {% block actions %}
  14.             {% include '@ui/common/buttons/forms/submit.html.twig' with {
  15.                 text: 'Save',
  16.                 helper: 'primary'
  17.             } %}
  18.         {% endblock %}
  19.     {% endembed %}
  20. {% endblock %}