diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2010-05-10 13:28:57 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-05-10 13:28:57 +0000 |
| commit | c51284f65aa5e7c12f57d5daba8745c1c3571114 (patch) | |
| tree | a6a03d097085f3fc9841d6cbe7da913ba8578c85 /docs | |
| parent | b7b0ebb3adf89b7abf8a66551077b6d110700ed6 (diff) | |
[1.1.X] Fixed #12621 -- Corrected grammar error in custom template tag docs. Thanks to beemzet for the report.
Backport of r13212 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@13217 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/howto/custom-template-tags.txt | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/docs/howto/custom-template-tags.txt b/docs/howto/custom-template-tags.txt index c6f76772de..af2a5474d8 100644 --- a/docs/howto/custom-template-tags.txt +++ b/docs/howto/custom-template-tags.txt @@ -7,12 +7,13 @@ Custom template tags and filters Introduction ============ -Django's template system comes a wide variety of :ref:`built-in tags and filters -<ref-templates-builtins>` designed to address the presentation logic needs of -your application. Nevertheless, you may find yourself needing functionality that -is not covered by the core set of template primitives. You can extend the -template engine by defining custom tags and filters using Python, and then make -them available to your templates using the ``{% load %}`` tag. +Django's template system comes with a wide variety of :ref:`built-in +tags and filters <ref-templates-builtins>` designed to address the +presentation logic needs of your application. Nevertheless, you may +find yourself needing functionality that is not covered by the core +set of template primitives. You can extend the template engine by +defining custom tags and filters using Python, and then make them +available to your templates using the ``{% load %}`` tag. Code layout ----------- |
