Dan Jacob
Dan Jacob
This would be useful especially as Beaker (the default) is being deprecated in favor of dogpile: http://dogpilecache.readthedocs.org/en/latest/api.html#mako-integration For example: ``` mako.cache_impl = dogpile.cache mako.cache_regions = default=myapp.mycache ```
This was working in **1.9x**: ```javascript import htmx from "htmx.org"; // global HTMX configuration // https://htmx.org/docs/#config htmx.config.historyCacheSize = 0; htmx.config.refreshOnHistoryMiss = false; htmx.config.scrollBehavior = "smooth"; htmx.config.scrollIntoViewOnBoost = false; htmx.config.useTemplateFragments =...
1. Replace the homegrown `query_string` template tag with new `querystring` 2. Add optional connection pool settings
As of Django 5.1, the `LoginRequiredMiddleware` will be part of the Django core. This will be included by default with new Django projects in the `MIDDLEWARE` setting. All Django views...
1. Added "django_components" to `INSTALLED_APPS` 2. Set up `TEMPLATES` as follows: ```python TEMPLATES = [ { "BACKEND": "django.template.backends.django.DjangoTemplates", "DIRS": [BASE_DIR / "templates"], "OPTIONS": { "builtins": [ "django_components.templatetags.component_tags", # my builtins......
Hi, thanks first of all for a great utility! I was wondering if it would be possible to have a Django command equivalent to `download_cli`, which would remove the CLI...
I have a URL returning `HX-Location` like this: `{path: '/some-other-url/'}`. Page is "redirected" to the new URL. This works fine in htmx 2.0.2, in 2.0.3 it breaks with `htmx:targetError`. Target...
Python 3.13 Django 5.2 django-q2 1.7.6 Using `async_iter` the tasks are run correctly, however it appears the save operation at the end of the run is broken. ```python def run_tasks((*,...
Trying to run this command using `FileBinaryRead` e.g. `./manage.py my_command path_to_file.txt` ```python app = Typer() @app.command() def handle(self, file: typer.FileBinaryRead) -> None: """Print out file""" for chunk in file: print(chunk)...