Projet

Général

Profil

0001-region-reunion-hide-sidebar-actions-41856.patch

Emmanuel Cazenave, 20 avril 2020 08:44

Télécharger (908 octets)

Voir les différences:

Subject: [PATCH] region-reunion: hide sidebar-actions (#41856)

 templates/variants/la-reunion/gadjo/base.html | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 templates/variants/la-reunion/gadjo/base.html
templates/variants/la-reunion/gadjo/base.html
1
{% extends 'gadjo/base.html' %}
2
{% block extrascripts %}
3
{{ block.super }}
4
<script>
5
  $(function() {
6
      if (window.location.pathname.startsWith('/backoffice/management/')) {
7
          $("#sidebar-actions").hide();
8
      }
9
  });
10
</script>
11
{% endblock %}
0
-