mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-14 11:21:13 +00:00
12 lines
279 B
Python
12 lines
279 B
Python
|
from typing import Optional
|
||
|
|
||
|
|
||
|
class HTMXMixin:
|
||
|
template_name_htmx: Optional[str] = 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
|