la-reunion-region: hide stat link (#54909)

This commit is contained in:
Emmanuel Cazenave 2021-06-16 12:27:26 +02:00
parent 29be6affa8
commit ec5446e06c
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
{% extends 'gadjo/base.html' %}
{% block extrascripts %}
{{ block.super }}
<script>
$(function() {
if (window.location.pathname === '/backoffice/management/forms') {
$("#sidebar-actions").parent().hide();
}
});
</script>
{% endblock %}