mirror of
https://github.com/netbox-community/netbox.git
synced 2026-01-22 19:48:45 -06:00
19615 append extra query params to static template tag
This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
{% load django_htmx %}
|
{% load django_htmx %}
|
||||||
{% load plugins %}
|
{% load plugins %}
|
||||||
|
{% load builtins %}
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html
|
<html
|
||||||
lang="en"
|
lang="en"
|
||||||
@@ -26,7 +27,7 @@
|
|||||||
{# Initialize color mode #}
|
{# Initialize color mode #}
|
||||||
<script
|
<script
|
||||||
type="text/javascript"
|
type="text/javascript"
|
||||||
src="{% static 'setmode.js' %}?v={{ settings.RELEASE.version }}"
|
src="{% static_with_params 'setmode.js' v=settings.RELEASE.version %}"
|
||||||
onerror="window.location='{% url 'media_failure' %}?filename=setmode.js'">
|
onerror="window.location='{% url 'media_failure' %}?filename=setmode.js'">
|
||||||
</script>
|
</script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
@@ -39,12 +40,12 @@
|
|||||||
{# Static resources #}
|
{# Static resources #}
|
||||||
<link
|
<link
|
||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
href="{% static 'netbox-external.css'%}?v={{ settings.RELEASE.version }}"
|
href="{% static_with_params 'netbox-external.css' v=settings.RELEASE.version %}"
|
||||||
onerror="window.location='{% url 'media_failure' %}?filename=netbox-external.css'"
|
onerror="window.location='{% url 'media_failure' %}?filename=netbox-external.css'"
|
||||||
/>
|
/>
|
||||||
<link
|
<link
|
||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
href="{% static 'netbox.css'%}?v={{ settings.RELEASE.version }}"
|
href="{% static_with_params 'netbox.css' v=settings.RELEASE.version %}"
|
||||||
onerror="window.location='{% url 'media_failure' %}?filename=netbox.css'"
|
onerror="window.location='{% url 'media_failure' %}?filename=netbox.css'"
|
||||||
/>
|
/>
|
||||||
<link rel="icon" type="image/png" href="{% static 'netbox.ico' %}" />
|
<link rel="icon" type="image/png" href="{% static 'netbox.ico' %}" />
|
||||||
@@ -53,7 +54,7 @@
|
|||||||
{# Javascript #}
|
{# Javascript #}
|
||||||
<script
|
<script
|
||||||
type="text/javascript"
|
type="text/javascript"
|
||||||
src="{% static 'netbox.js' %}?v={{ settings.RELEASE.version }}"
|
src="{% static_with_params 'netbox.js' v=settings.RELEASE.version %}"
|
||||||
onerror="window.location='{% url 'media_failure' %}?filename=netbox.js'">
|
onerror="window.location='{% url 'media_failure' %}?filename=netbox.js'">
|
||||||
</script>
|
</script>
|
||||||
{% django_htmx_script %}
|
{% django_htmx_script %}
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
from django import template
|
from django import template
|
||||||
|
from django.templatetags.static import static
|
||||||
from django.utils.safestring import mark_safe
|
from django.utils.safestring import mark_safe
|
||||||
|
from urllib.parse import urlparse, urlunparse, parse_qs, urlencode
|
||||||
|
|
||||||
from extras.choices import CustomFieldTypeChoices
|
from extras.choices import CustomFieldTypeChoices
|
||||||
from utilities.querydict import dict_to_querydict
|
from utilities.querydict import dict_to_querydict
|
||||||
@@ -11,6 +13,7 @@ __all__ = (
|
|||||||
'customfield_value',
|
'customfield_value',
|
||||||
'htmx_table',
|
'htmx_table',
|
||||||
'formaction',
|
'formaction',
|
||||||
|
'static_with_params',
|
||||||
'tag',
|
'tag',
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -127,3 +130,38 @@ def formaction(context):
|
|||||||
if context.get('htmx_navigation', False):
|
if context.get('htmx_navigation', False):
|
||||||
return mark_safe('hx-push-url="true" hx-post')
|
return mark_safe('hx-push-url="true" hx-post')
|
||||||
return 'formaction'
|
return 'formaction'
|
||||||
|
|
||||||
|
|
||||||
|
@register.simple_tag
|
||||||
|
def static_with_params(path, **params):
|
||||||
|
"""
|
||||||
|
Generate a static URL with properly appended query parameters.
|
||||||
|
|
||||||
|
This template tag handles the case where static files are served from AWS S3 or other
|
||||||
|
CDNs that already include query parameters in the URL. It properly appends additional
|
||||||
|
query parameters without creating double question marks.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
path: The static file path (e.g., 'setmode.js')
|
||||||
|
**params: Query parameters to append (e.g., v='4.3.1')
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
A properly formatted URL with query parameters
|
||||||
|
"""
|
||||||
|
# Get the base static URL
|
||||||
|
static_url = static(path)
|
||||||
|
|
||||||
|
# Parse the URL to extract existing query parameters
|
||||||
|
parsed = urlparse(static_url)
|
||||||
|
existing_params = parse_qs(parsed.query)
|
||||||
|
|
||||||
|
# Add new parameters to existing ones
|
||||||
|
for key, value in params.items():
|
||||||
|
existing_params[key] = [str(value)]
|
||||||
|
|
||||||
|
# Rebuild the query string
|
||||||
|
new_query = urlencode(existing_params, doseq=True)
|
||||||
|
|
||||||
|
# Reconstruct the URL with the new query string
|
||||||
|
new_parsed = parsed._replace(query=new_query)
|
||||||
|
return urlunparse(new_parsed)
|
||||||
|
|||||||
Reference in New Issue
Block a user