Update public_base.html to remove redundant JavaScript include and bump version to 1.6.1

This commit is contained in:
Daniel Montecillo 2025-06-11 20:54:22 -06:00
parent e94289c8a2
commit 6ac40421f0
2 changed files with 1 additions and 4 deletions

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