feat(if): Support and, or and not during if expressions

Closes #73
This commit is contained in:
Kyle Fuller
2016-11-28 02:56:04 +00:00
parent 2324808dca
commit e84f8a41d4
4 changed files with 547 additions and 124 deletions

View File

@@ -11,6 +11,12 @@
### Enhancements
- If tags can now use prefix and infix operators such as `not`, `and` and `or`.
```html+django
{% if one or two and not three %}
```
- You may now register custom template filters which make use of arguments.
- There is now a `default` filter.