我目前正在从事一个我尚未开始的symfony项目,我正在完成它,所以有些东西已经由别人完成了,我的问题是在应用程序中有一个导航栏,用于通知,我想使用属性按日期时间排序通知显示,但是找不到负责通知图标的控制器/动作,我只找到了包含通知图标的base.html.twig我该怎么办?
<li class="dropdown">
<a title="Notifications" href="#fakelink" class="dropdown-toggle"
data-toggle="dropdown">
<strong>
<i class="fa fa-bell">
</i>
{% set conge = 0 %}
{% set notif = 0 %}
{% set refuse = 0 %}
{% for notif_c in notif_conges if notif_c.getEtat == "En cours" %}
{% set conge = conge + 1 %}
{% endfor %}
{% for notif_c in notif_conges if notif_c.getEtat == "Acceptée" and notif_c.user == app.user %}
{% set notif = notif + 1 %}
{% endfor %}
{% for notif_c in notif_conges if notif_c.getEtat == "Refusée" and notif_c.user == app.user %}
{% set refuse = refuse + 1 %}
{% endfor %}
({{ conge }})
</strong>
</a>
{% if notif_conges|length > 0 %}
<ul class="dropdown-menu animated half flipInX">
{% for notif_c in notif_conges %}
{% if notif_c.etat == "En cours" %}
<li>
<a>Nouvelle demande : "{{ notif_c.motif }}" Envoyée le
"{{ notif_c.CreatedAt|date('Y-m-d H:i:s') }}"
</a>
</li>
{% endif %}
{% if notif_c.etat == "Acceptée" and notif_c.user == app.user %}
<li>
<a>Votre demande : "{{ notif_c.motif }}" Envoyée le
"{{ notif_c.CreatedAt|date('Y-m-d H:i:s') }}" a était
traitée
</a>
</li>
{% endif %}
{% if notif_c.etat == "Refusée" and notif_c.user == app.user %}
<li>
<a>Votre demande : "{{ notif_c.motif }}" Envoyée le
"{{ notif_c.CreatedAt|date('Y-m-d H:i:s') }}" a était
traitée
</a>
</li>
{% endif %}
{% endfor %}
</ul>
{% endif %}
</li>