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
This commit is contained in:
Malcolm Tredinnick 2007-10-20 03:53:44 +00:00
parent c4cdb214a6
commit 3e3a7e0258
1 changed files with 1 additions and 1 deletions

View File

@ -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 %}