src/Cms/WorkflowsBundle/Resources/views/Dashboard/Drafts/drafts.html.twig line 1

Open in your IDE?
  1. {% extends '@ui/dashboards/default.html.twig' %}
  2. {% block header %}
  3.     {% embed '@ui/common/headers/new.html.twig' with {
  4.         title: 'Drafts'
  5.     } %}{% endembed %}
  6.     {% include '@CmsWorkflows/Dashboard/Drafts/includes/navbar.html.twig' %}
  7. {% endblock %}
  8. {% block content %}
  9.     {% embed '@ui/common/actionbar/default.html.twig' with {
  10.         search: search
  11.     } %}
  12.         {% block searchbox %}
  13.             {% include '@ui/common/actionbar/searchbox.html.twig' with {
  14.                 term: search.filter('title')
  15.             } %}
  16.         {% endblock %}
  17.     {% endembed %}
  18.     {% include '@CmsWorkflows/Dashboard/Drafts/includes/drafts.html.twig' %}
  19.     {% include '@CmsCore/includes/Search/empty.html.twig' with {
  20.         results: drafts|length
  21.     } %}
  22.     {% include '@ui/common/lazyloadSearch.html.twig' with {
  23.         link: path(routes.my_drafts_lazy),
  24.         search: search
  25.     } %}
  26. {% endblock %}