Skip to content

Commit 3c6a9e8

Browse files
fbourigaultNyholm
authored andcommitted
fix twig namespaces (#197)
1 parent 81de492 commit 3c6a9e8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Resources/views/stack.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
</div>
6666
{% for child in collector.childrenStacks(stack) %}
6767
<div class="httplug-stack">
68-
{% include 'HttplugBundle::stack.html.twig' with {
68+
{% include '@Httplug/stack.html.twig' with {
6969
'collector': collector,
7070
'client': client,
7171
'stack': child,

Resources/views/webprofiler.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
</div>
4242
{% endset %}
4343

44-
{% include 'WebProfilerBundle:Profiler:toolbar_item.html.twig' with { 'link': profiler_url, 'status': collector.failedStacks|length ? 'red' : '' } %}
44+
{% include '@WebProfiler/Profiler/toolbar_item.html.twig' with { 'link': profiler_url, 'status': collector.failedStacks|length ? 'red' : '' } %}
4545
{% endif %}
4646
{% endblock %}
4747

@@ -80,7 +80,7 @@
8080

8181
{% for stack in collector.clientStacks(client) if not stack.parent %}
8282
<div class="httplug-stack">
83-
{% include 'HttplugBundle::stack.html.twig' with {
83+
{% include '@Httplug/stack.html.twig' with {
8484
'collector': collector,
8585
'client': client,
8686
'stack': stack,

0 commit comments

Comments
 (0)