mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-26 03:58:45 +02:00
- Autoloader for portal files in the itop-portal-base module - Dependencies moved to root composer.json - Add autoloader for /core and /application content
32 lines
1.0 KiB
Twig
32 lines
1.0 KiB
Twig
{% extends '@WebProfiler/Profiler/layout.html.twig' %}
|
|
|
|
{% block toolbar %}
|
|
{% set icon %}
|
|
{{ include('@WebProfiler/Icon/ajax.svg') }}
|
|
<span class="sf-toolbar-value sf-toolbar-ajax-request-counter">0</span>
|
|
{% endset %}
|
|
|
|
{% set text %}
|
|
<div class="sf-toolbar-info-piece">
|
|
<b class="sf-toolbar-ajax-info"></b>
|
|
</div>
|
|
<div class="sf-toolbar-info-piece">
|
|
<table class="sf-toolbar-ajax-requests">
|
|
<thead>
|
|
<tr>
|
|
<th>Method</th>
|
|
<th>Type</th>
|
|
<th>Status</th>
|
|
<th>URL</th>
|
|
<th>Time</th>
|
|
<th>Profile</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="sf-toolbar-ajax-request-list"></tbody>
|
|
</table>
|
|
</div>
|
|
{% endset %}
|
|
|
|
{{ include('@WebProfiler/Profiler/toolbar_item.html.twig', { link: false }) }}
|
|
{% endblock %}
|