We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 990daf7 commit 79ca9c6Copy full SHA for 79ca9c6
bolt-htmx/bolt/htmx/views.py
@@ -1,5 +1,7 @@
1
import re
2
3
+from bolt.utils.cache import patch_vary_headers
4
+
5
6
class HTMXViewMixin:
7
htmx_template_name = ""
@@ -19,6 +21,13 @@ def render_template(self):
19
21
20
22
return template.render(context)
23
24
+ def get_response(self):
25
+ response = super().get_response()
26
+ # Tell browser caching to also consider the fragment header,
27
+ # not just the url/cookie.
28
+ patch_vary_headers(response, ["HX-Request", "BHX-Fragment", "BHX-Action"])
29
+ return response
30
31
def get_request_handler(self):
32
if self.is_htmx_request:
33
# You can use an htmx_{method} method on views
0 commit comments