mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
d470848b29
* Clean up base modules * Clean up forms modules * Clean up templatetags modules * Replace custom simplify_decimal filter with floatformat * Misc cleanup * Merge ReturnURLForm into ConfirmationForm * Clean up import statements for utilities.forms * Fix field class references in docs
25 lines
564 B
Python
25 lines
564 B
Python
from urllib.parse import urlparse
|
|
|
|
__all__ = (
|
|
'is_embedded',
|
|
'is_htmx',
|
|
)
|
|
|
|
|
|
def is_htmx(request):
|
|
"""
|
|
Returns True if the request was made by HTMX; False otherwise.
|
|
"""
|
|
return 'Hx-Request' in request.headers
|
|
|
|
|
|
def is_embedded(request):
|
|
"""
|
|
Returns True if the request indicates that it originates from a URL different from
|
|
the path being requested.
|
|
"""
|
|
hx_current_url = request.headers.get('HX-Current-URL', None)
|
|
if not hx_current_url:
|
|
return False
|
|
return request.path != urlparse(hx_current_url).path
|