mirror of
https://github.com/django/django.git
synced 2025-11-02 12:58:56 +00:00
Fixed #13058 - "smart if" template tag doesn't support "if not in ..." condition
Thanks to ramusus for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12732 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
021ba30ad1
commit
960af90279
6 changed files with 38 additions and 7 deletions
|
|
@ -440,6 +440,11 @@ how ``x in y`` will be interpreted::
|
|||
instance that belongs to the QuerySet.
|
||||
{% endif %}
|
||||
|
||||
``not in`` operator
|
||||
~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Not contained within. This is the negation of the ``in`` operator.
|
||||
|
||||
|
||||
The comparison operators cannot be 'chained' like in Python or in mathematical
|
||||
notation. For example, instead of using::
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue