Skip to content

Commit dc81b35

Browse files
committed
fix configuration example in docs
1 parent 5bace22 commit dc81b35

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/source/configuration.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ settings:
1010
.. code-block:: python
1111
1212
STATIC_TEMPLATES = {
13-
'ENGINES': [
13+
'ENGINES': [{
1414
'BACKEND': 'render_static.backends.StaticDjangoTemplates',
1515
'DIRS': [BASE_DIR / 'tmpls' ], # look here for templates
1616
'OPTIONS': {
@@ -23,11 +23,11 @@ settings:
2323
],
2424
'builtins': ['render_static.templatetags.render_static']
2525
},
26-
],
26+
}],
2727
'context': {
2828
# define a global context dictionary that will be used to render all templates
2929
},
30-
'templates' [
30+
'templates': [
3131
('app/js/defines.js', {
3232
'context': {
3333
'defines': 'app.defines.DefinesClass'

0 commit comments

Comments
 (0)