src/Platform/ControlPanelBundle/Resources/views/Dashboard/Tenant/onerosterSetup.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: 'One Roster Setup',
  5.         title: tenant.name
  6.     } %}
  7. {% endblock %}
  8. {% block content %}
  9.     {% embed '@ui/common/forms/new.html.twig' with {
  10.         form: form,
  11.         htmlId: 'frmData'
  12.     } %}
  13.         {% block actions %}
  14.             {% include '@ui/common/buttons/default.html.twig' with {
  15.                 text: 'Cancel',
  16.                 link: path(routes.index)
  17.             } %}
  18.             {% include '@ui/common/buttons/forms/submit.html.twig' with {
  19.                 text: 'Save',
  20.                 helper: 'primary'
  21.             } %}
  22.         {% endblock %}
  23.     {% endembed %}
  24. {% endblock %}