Merge pull request #1278 from Leggendario12/main

Fix the issue of the sidebar toggle not working on base.html
This commit is contained in:
Christopher Broderick 2025-06-12 10:42:22 +02:00 committed by GitHub
commit 680342efeb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 5 deletions

View File

@ -44,7 +44,7 @@
<!-- /#wrapper --> <!-- /#wrapper -->
{% include "helpdesk/debug.html" %} {% include "helpdesk/debug.html" %}
<script src="{% static 'helpdesk/js/sb-admin.js' %}"></script>
{% block helpdesk_js %}{% endblock %} {% block helpdesk_js %}{% endblock %}
</body> </body>

View File

@ -6,10 +6,8 @@
<html lang="en"> <html lang="en">
<head> <head>
{% include 'helpdesk/base-head.html' %} {% include 'helpdesk/base-head.html' %}
{% block helpdesk_head %}{% endblock %} {% block helpdesk_head %}{% endblock %}
{% include 'helpdesk/base_js.html' %}
</head> </head>
@ -42,7 +40,6 @@
<!-- /#wrapper --> <!-- /#wrapper -->
{% include "helpdesk/debug.html" %} {% include "helpdesk/debug.html" %}
{% include 'helpdesk/base_js.html' %} {% include 'helpdesk/base_js.html' %}
{% block helpdesk_js %}{% endblock %} {% block helpdesk_js %}{% endblock %}
</body> </body>

View File

@ -7,7 +7,7 @@ from setuptools import find_packages, setup
import sys import sys
version = "1.6.0" version = "1.6.1"
# Provided as an attribute, so you can append to these instead # Provided as an attribute, so you can append to these instead