mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-25 19:48:49 +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
31 lines
1.3 KiB
Twig
31 lines
1.3 KiB
Twig
<!-- START of Symfony Web Debug Toolbar -->
|
|
<div id="sfMiniToolbar-{{ token }}" class="sf-minitoolbar" data-no-turbolink>
|
|
<a href="#" title="Show Symfony toolbar" tabindex="-1" id="sfToolbarMiniToggler-{{ token }}" accesskey="D">
|
|
{{ include('@WebProfiler/Icon/symfony.svg') }}
|
|
</a>
|
|
</div>
|
|
<div id="sfToolbarClearer-{{ token }}" class="sf-toolbar-clearer"></div>
|
|
|
|
<div id="sfToolbarMainContent-{{ token }}" class="sf-toolbarreset clear-fix" data-no-turbolink>
|
|
{% for name, template in templates %}
|
|
{% if block('toolbar', template) is defined %}
|
|
{% with {
|
|
collector: profile.getcollector(name),
|
|
profiler_url: profiler_url,
|
|
token: profile.token,
|
|
name: name,
|
|
profiler_markup_version: profiler_markup_version,
|
|
csp_script_nonce: csp_script_nonce,
|
|
csp_style_nonce: csp_style_nonce
|
|
} %}
|
|
{{ block('toolbar', template) }}
|
|
{% endwith %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<a class="hide-button" id="sfToolbarHideButton-{{ token }}" title="Close Toolbar" tabindex="-1" accesskey="D">
|
|
{{ include('@WebProfiler/Icon/close.svg') }}
|
|
</a>
|
|
</div>
|
|
<!-- END of Symfony Web Debug Toolbar -->
|