ajax.html.twig 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {% extends '@WebProfiler/Profiler/layout.html.twig' %}
  2. {% block toolbar %}
  3. {% set icon %}
  4. {{ include('@WebProfiler/Icon/ajax.svg') }}
  5. <span class="sf-toolbar-value sf-toolbar-ajax-request-counter">0</span>
  6. {% endset %}
  7. {% set text %}
  8. <div class="sf-toolbar-info-piece">
  9. <span class="sf-toolbar-header">
  10. <b class="sf-toolbar-ajax-info"></b>
  11. <b class="sf-toolbar-action">(<a class="sf-toolbar-ajax-clear" href="javascript:void(0);">Clear</a>)</b>
  12. </span>
  13. </div>
  14. <div class="sf-toolbar-info-piece">
  15. <table class="sf-toolbar-ajax-requests">
  16. <thead>
  17. <tr>
  18. <th>#</th>
  19. <th>Profile</th>
  20. <th>Method</th>
  21. <th>Type</th>
  22. <th>Status</th>
  23. <th>URL</th>
  24. <th>Time</th>
  25. </tr>
  26. </thead>
  27. <tbody class="sf-toolbar-ajax-request-list"></tbody>
  28. </table>
  29. </div>
  30. {% endset %}
  31. {{ include('@WebProfiler/Profiler/toolbar_item.html.twig', { link: false }) }}
  32. {% endblock %}