This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/core/htmx.py

9 lines
246 B
Python
Raw Normal View History

class HTMXMixin:
template_name_htmx: str | None = None
def get_template_name(self):
if self.request.htmx and self.template_name_htmx:
return self.template_name_htmx
else:
return self.template_name