src/Platform/ControlPanelBundle/Resources/views/Dashboard/Tenant/edit.html.twig line 1

Open in your IDE?
  1. {% extends '@PlatformControlPanel/base.html.twig' %}
  2. {% block header %}
  3.     {% include '@ui/common/headers/new.html.twig' with {
  4.         subtitle: 'Edit Tenant',
  5.         title: tenant.name,
  6.         dropdown: false
  7.     } %}
  8.     {% include '@ui/common/forms/tabs/default.html.twig' with {
  9.         form: form,
  10.         title: 'Categories',
  11.         formId: 'frmData'
  12.     } %}
  13. {% endblock %}
  14. {% block content %}
  15.     {{ embed_title('Control Panel', 10) }}
  16.     {{ embed_title('Tenants', 20) }}
  17.     {{ embed_title('Edit', 30) }}
  18.     {% embed '@ui/common/forms/new.html.twig' with {
  19.         form: form,
  20.         htmlId: 'frmData'
  21.     } %}
  22.         {% block actions %}
  23.             {% include '@ui/common/buttons/default.html.twig' with {
  24.                 text: 'Cancel',
  25.                 link: path(routes.index)
  26.             } %}
  27.             {% include '@ui/common/buttons/forms/submit.html.twig' with {
  28.                 text: 'Save',
  29.                 helper: 'primary'
  30.             } %}
  31.         {% endblock %}
  32.     {% endembed %}
  33. {% endblock %}