2021-09-27 18:39:58 +09:00
|
|
|
{% for res in results %}
|
|
|
|
{% if res is instanceof('App\\Entity\\Note') %}
|
2021-10-04 20:17:14 +09:00
|
|
|
{% include '/cards/note/view.html.twig' with {'note': res} %}
|
2021-09-27 18:39:58 +09:00
|
|
|
{% else %}
|
|
|
|
{{ dump(res) }}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|