简体   繁体   中英

No breadcrumb for custom view in Sonata Admin?

I created a custom view in Sonata Admin following recipe from official doc ( here ).

Everything is working good, but breadcrumb is empty (the same in last screenshot of recipe).

I googled a lot without success... Isn't it possible to display breadcrumbs with custom views in Sonata Admin?

I achieved this by extending sonata_breadcrumb block:

{% block sonata_breadcrumb %}
    <div class="hidden-xs">
        <ol class="nav navbar-top-links breadcrumb">
            <li>
                <a href="/admin">
                    <i class="fa fa-home"></i>
                </a>
            </li>
            <li class="active">
                <span>My Custom View</span>
            </li>
        </ol>
    </div>
{% endblock sonata_breadcrumb %}

Can someone confirm it's the right way to do it?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM