We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b6ecb2 commit e7d47b7Copy full SHA for e7d47b7
README.md
@@ -398,12 +398,12 @@ If you need to output your assets in a jinja template we provide a Jinja2 extens
398
To install the extension add it to the django_jinja `TEMPLATES` configuration in the `["OPTIONS"]["extension"]` list.
399
400
```python
401
+from django_jinja.builtins import DEFAULT_EXTENSIONS
402
TEMPLATES = [
403
{
404
"BACKEND": "django_jinja.backend.Jinja2",
405
"OPTIONS": {
- "extensions": [
406
- "django_jinja.builtins.extensions.DjangoFiltersExtension",
+ "extensions": DEFAULT_EXTENSIONS + [
407
"webpack_loader.contrib.jinja2ext.WebpackExtension",
408
],
409
}
0 commit comments