Fix widgets in pages
This commit is contained in:
parent
e3d57c9aa8
commit
d2e0137c8d
|
@ -54,6 +54,7 @@ class ObjectList(ObjectNameMixin, ListView):
|
||||||
for arg in self.list_url_args:
|
for arg in self.list_url_args:
|
||||||
list_url_args[arg] = locals()[arg]
|
list_url_args[arg] = locals()[arg]
|
||||||
|
|
||||||
|
orig_type = type
|
||||||
if type == "page":
|
if type == "page":
|
||||||
type = "modal"
|
type = "modal"
|
||||||
|
|
||||||
|
@ -90,7 +91,9 @@ class ObjectList(ObjectNameMixin, ListView):
|
||||||
|
|
||||||
# Return partials for HTMX
|
# Return partials for HTMX
|
||||||
if self.request.htmx:
|
if self.request.htmx:
|
||||||
# self.template_name = self.list_template
|
if orig_type == "page":
|
||||||
|
self.template_name = self.list_template
|
||||||
|
else:
|
||||||
context["window_content"] = self.list_template
|
context["window_content"] = self.list_template
|
||||||
return self.render_to_response(context)
|
return self.render_to_response(context)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue