django-templatetag-sugar 0.1
A library to make Django's template tags sweet.
A library to make writing templatetags in Django sweet.
Here's an example of using:
@tag(register, [Constant("for"), Variable(), Optional([Constant("as"), Name()])]):
def example_tag(context, val, asvar=None):
if asvar:
context[asvar] = val
return ""
else:
return val
As you can see it makes it super simple to define the syntax for a tag.
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| django-templatetag-sugar-0.1.tar.gz (md5) | Source | 2010-05-24 | 2KB | 135956 | |
- Author: Alex Gaynor
- Home Page: http://github.com/alex/django-templatetag-sugar/
- License: BSD
- Categories
- Package Index Owner: alexgaynor
- DOAP record: django-templatetag-sugar-0.1.xml
