From 6ac40421f06d2f7f7d6bf18ac859dc185536257d Mon Sep 17 00:00:00 2001 From: Daniel Montecillo Date: Wed, 11 Jun 2025 20:54:22 -0600 Subject: [PATCH] Update public_base.html to remove redundant JavaScript include and bump version to 1.6.1 --- helpdesk/templates/helpdesk/public_base.html | 3 --- setup.py | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/helpdesk/templates/helpdesk/public_base.html b/helpdesk/templates/helpdesk/public_base.html index 22f256dc..85dd4a5d 100644 --- a/helpdesk/templates/helpdesk/public_base.html +++ b/helpdesk/templates/helpdesk/public_base.html @@ -6,10 +6,8 @@ - {% include 'helpdesk/base-head.html' %} {% block helpdesk_head %}{% endblock %} - {% include 'helpdesk/base_js.html' %} @@ -42,7 +40,6 @@ {% include "helpdesk/debug.html" %} - {% include 'helpdesk/base_js.html' %} {% block helpdesk_js %}{% endblock %} diff --git a/setup.py b/setup.py index 7ccbf5c6..e5258c84 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from setuptools import find_packages, setup import sys -version = "1.6.0" +version = "1.6.1" # Provided as an attribute, so you can append to these instead