From 3e3a7e02583bb2087bfff1b358a7a0bf40b55220 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sat, 20 Oct 2007 03:53:44 +0000 Subject: [PATCH] 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 --- django/template/defaulttags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 %}