Projet

Général

Profil

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

Emmanuel Cazenave, 20 avril 2020 15:29

Télécharger (983 octets)

Voir les différences:

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

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