Sonata Admin Bundle: show total count of collection on list view

前端 未结 5 937
孤城傲影
孤城傲影 2021-01-06 04:50

Is there any way to show total count of collection on list view? Imagine that there is a user that can have many links. How can I show total links count on list view?

5条回答
  •  一生所求
    2021-01-06 05:09

    Found answer here:

    SonataAdminBundle custom rendering of text fields in list

    I'm using Sonata 2.3 so TWIG template should be like:

    {% extends admin.getTemplate('base_list_field') %}
    
    {% block field %}
        {{ value|length }}
    {% endblock %}
    

提交回复
热议问题