Sunday, June 28, 2015
Symfony web debug toolbar does not show up
The toolbar inserts itself in pages by looking for a terminating
tag on your generated page.
If you don't have a tag in your page the toolbar will not appear.
Add the body block to your template, so that the web debug toolbar would show:
# vim src/Acme/DemoBundle/Resources/views/Default/index.html.twig
{% extends '::base.html.twig' %}
{% block body %}
Hello {{ name }}
{% endblock %}
No comments:
Post a Comment