diff --git a/docs/topics/templates.txt b/docs/topics/templates.txt
index 197ffc1..be0e74d 100644
a
|
b
|
Jinja2 templates, as shown in the example above. Jinja2's global namespace
|
450 | 450 | removes the need for template context processors. The Django template language |
451 | 451 | doesn't have an equivalent of Jinja2 tests. |
452 | 452 | |
| 453 | ``'{% csrf_token %}'`` in Django templates translates to ``'{{ csrf_token }}'`` in Jinja2 templates. |
| 454 | |
| 455 | ``'{{ csrf_token }}'`` works identically in Django templates and in Jinja2 templates. |
| 456 | |
453 | 457 | Custom backends |
454 | 458 | --------------- |
455 | 459 | |