diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-10-20 03:53:44 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-10-20 03:53:44 +0000 |
| commit | 3e3a7e02583bb2087bfff1b358a7a0bf40b55220 (patch) | |
| tree | 11caad448f2d66763c763d22389ce8bbd5568513 | |
| parent | c4cdb214a6a597bfd6fae6f855303b199b3d208d (diff) | |
Fixed a markup problem in the docstring for the "if" tag. This was showing up
in the admin docs.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6539 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/template/defaulttags.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/template/defaulttags.py b/django/template/defaulttags.py index 151985bfdd..4faa334af3 100644 --- a/django/template/defaulttags.py +++ b/django/template/defaulttags.py @@ -675,7 +675,7 @@ def do_if(parser, token): {% if athlete_list and coach_list or cheerleader_list %} If you need to combine ``and`` and ``or`` to do advanced logic, just use - nested if tags. For example: + nested if tags. For example:: {% if athlete_list %} {% if coach_list or cheerleader_list %} |
