Reputation: 2989
how can I remove sonata project link from sonata admin panel.
Your help is appreciated. Thanks
Upvotes: 5
Views: 498
Reputation: 36
Redefine sonata template:
sonata_admin:
templates:
layout: 'admin/app_layout.html.twig'
And in template redefine block side_bar_after_nav_content
:
{% extends 'SonataAdminBundle::standard_layout.html.twig' %}
{% block side_bar_after_nav_content %}
{# Removes original sonata link #}
{% endblock %}
Upvotes: 0
Reputation: 1995
you need tyo override sonata-project/admin-bundle/Resources/views/standard_layout.html.twig
it is at line 247:
{% block side_bar_after_nav %}
<p class="text-center small" style="border-top: 1px solid #444444; padding-top: 10px">
{% block side_bar_after_nav_content %}
<a href="https://sonata-project.org" rel="noreferrer" target="_blank">sonata project</a>
{% endblock %}
</p>
{% endblock %}
Upvotes: 2