1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {% extends 'WebProfilerBundle:Profiler:base.html.twig' %}
- {% block body %}
- {% render 'WebProfilerBundle:Profiler:toolbar' with { 'token': token, 'position': 'normal' } %}
- <div id="content">
- {% include 'WebProfilerBundle:Profiler:header.html.twig' only %}
- <div class="resume">
- <p>
- <strong><a href="{{ profiler.url }}">{{ profiler.url }}</a></strong>
- <span class="date">
- <strong>by {{ profiler.ip }}</strong> at <strong>{{ profiler.time|date('r') }}</strong>
- </span>
- </p>
- </div>
- <div class="main">
-
- <div class="clear_fix">
- <div class="navigation">
-
- {% if templates is defined %}
- <ul class="menu_profiler">
- {% for name, template in templates %}
- {% set menu %}{{ template.renderBlock('menu', { 'collector': profiler.get(name)}) }}{% endset %}
- {% if menu != '' %}
- <li class="{{ name }}{% if name == panel %} selected{% endif %}">
- <a href="{{ path('_profiler_panel', { 'token': token, 'panel': name }) }}">{{ menu|raw }}</a>
- </li>
- {% endif %}
- {% endfor %}
- </ul>
- {% endif %}
- {% render 'WebProfilerBundle:Profiler:searchBar' with { 'token': token } %}
-
- {% include 'WebProfilerBundle:Profiler:admin.html.twig' with { 'token': token } only %}
- </div>
- <div class="collector_content">
- {% block panel '' %}
- </div>
- </div>
- </div>
- </div>
- {% endblock %}
|