视图中断了用于配置文件的自定义数

时间:2014-11-11 09:23:53

标签: symfony

我已经为profiler创建了自定义数据收集器,如http://symfony.com/doc/current/cookbook/profiler/data_collector.html所述。 现在一切正常,除了模板中的{%block panel%},它定义了我的信息的内容区域。我有一切都到位,但在屏幕上,页面几乎没有样式,所以它的视觉破坏。

当我比较我的面板页面和其他一些来自探查器时,我的缺乏cca。 Symfony添加到页眉的200行样式以设置页面样式。我想念#content的风格作为例子。我试图清除缓存并刷新所有内容,但现在仍然如此。知道这里会出现什么问题吗?

这是我在浏览器中看到的...... enter image description here

已编辑:模板

{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}

{% block toolbar %}

{% endblock %}

{% block head %}

{% endblock %}

{% block menu %}
    <span class="label">
        <strong>NET.Notes</strong>

    </span>
{% endblock %}

{% block panel %}

  panel david

{% endblock %}

1 个答案:

答案 0 :(得分:0)

这是由于空头“头”。 Rust通过{{parent()}}删除它或包含父块。

{% block head %}
    {#if the web profiler panel needs some specific JS or CSS files #}
{% endblock %}