10 | | Django's template system comes a wide variety of :ref:`built-in tags and filters |
11 | | <ref-templates-builtins>` designed to address the presentation logic needs of |
12 | | your application. Nevertheless, you may find yourself needing functionality that |
13 | | is not covered by the core set of template primitives. You can extend the |
14 | | template engine by defining custom tags and filters using Python, and then make |
15 | | them available to your templates using the ``{% load %}`` tag. |
| 10 | Django's template system comes with a wide variety of :ref:`built-in tags |
| 11 | and filters <ref-templates-builtins>` designed to address the presentation |
| 12 | logic needs of your application. Nevertheless, you may find yourself needing |
| 13 | functionality that is not covered by the core set of template primitives. You |
| 14 | can extend the template engine by defining custom tags and filters using Python, |
| 15 | and then make them available to your templates using the ``{% load %}`` tag. |