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 5bace22 commit dc81b35Copy full SHA for dc81b35
doc/source/configuration.rst
@@ -10,7 +10,7 @@ settings:
10
.. code-block:: python
11
12
STATIC_TEMPLATES = {
13
- 'ENGINES': [
+ 'ENGINES': [{
14
'BACKEND': 'render_static.backends.StaticDjangoTemplates',
15
'DIRS': [BASE_DIR / 'tmpls' ], # look here for templates
16
'OPTIONS': {
@@ -23,11 +23,11 @@ settings:
23
],
24
'builtins': ['render_static.templatetags.render_static']
25
},
26
- ],
+ }],
27
'context': {
28
# define a global context dictionary that will be used to render all templates
29
30
- 'templates' [
+ 'templates': [
31
('app/js/defines.js', {
32
33
'defines': 'app.defines.DefinesClass'
0 commit comments