diff --git a/Resources/views/stack.html.twig b/Resources/views/stack.html.twig
index d366439b..92fba7ff 100644
--- a/Resources/views/stack.html.twig
+++ b/Resources/views/stack.html.twig
@@ -65,7 +65,7 @@
{% for child in collector.childrenStacks(stack) %}
- {% include 'HttplugBundle::stack.html.twig' with {
+ {% include '@Httplug/stack.html.twig' with {
'collector': collector,
'client': client,
'stack': child,
diff --git a/Resources/views/webprofiler.html.twig b/Resources/views/webprofiler.html.twig
index 302f345d..7a16f069 100644
--- a/Resources/views/webprofiler.html.twig
+++ b/Resources/views/webprofiler.html.twig
@@ -41,7 +41,7 @@
{% endset %}
- {% include 'WebProfilerBundle:Profiler:toolbar_item.html.twig' with { 'link': profiler_url, 'status': collector.failedStacks|length ? 'red' : '' } %}
+ {% include '@WebProfiler/Profiler/toolbar_item.html.twig' with { 'link': profiler_url, 'status': collector.failedStacks|length ? 'red' : '' } %}
{% endif %}
{% endblock %}
@@ -80,7 +80,7 @@
{% for stack in collector.clientStacks(client) if not stack.parent %}
- {% include 'HttplugBundle::stack.html.twig' with {
+ {% include '@Httplug/stack.html.twig' with {
'collector': collector,
'client': client,
'stack': stack,