mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-24 17:38:37 -06:00
Fixes #16542: Fix bulk form operations when HTMX is enabled
This commit is contained in:
parent
6f35a2ac2b
commit
b077c664e3
@ -1,4 +1,5 @@
|
|||||||
from django import template
|
from django import template
|
||||||
|
from django.utils.safestring import mark_safe
|
||||||
|
|
||||||
from extras.choices import CustomFieldTypeChoices
|
from extras.choices import CustomFieldTypeChoices
|
||||||
from utilities.querydict import dict_to_querydict
|
from utilities.querydict import dict_to_querydict
|
||||||
@ -124,5 +125,5 @@ def formaction(context):
|
|||||||
if HTMX navigation is enabled (per the user's preferences).
|
if HTMX navigation is enabled (per the user's preferences).
|
||||||
"""
|
"""
|
||||||
if context.get('htmx_navigation', False):
|
if context.get('htmx_navigation', False):
|
||||||
return 'hx-push-url="true" hx-post'
|
return mark_safe('hx-push-url="true" hx-post')
|
||||||
return 'formaction'
|
return 'formaction'
|
||||||
|
Loading…
Reference in New Issue
Block a user