django-ttag 2.4
A template tag constructor library for Django.
Downloads ↓ | Package Documentation
TTag is a template tag constructor library for Django created for the purpose of making writing template tags easier.
The tag syntax is modelled on Django's friendly syntaxes for models and forms. Here is a full example tag:
class Welcome(ttag.Tag)
user = ttag.Arg()
fallback = ttag.Arg(named=True, default='Hi!')
def output(self, data)
name = data['user'].get_full_name()
if name:
return 'Hi, %s!' % name
return data['fallback']
This would produce a tag named welcome which can be used like this:
{% welcome current_user fallback "Hello, anonymous." %}
More comprehensive usage and reference documentation can be found in the docs directory, or at http://packages.python.org/django-ttag/.
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| django-ttag-2.4.tar.gz (md5) | Source | 2011-11-16 | 26KB | 1149 | |
- Author: Chris Beaven
- Documentation: django-ttag package documentation
- Home Page: http://github.com/lincolnloop/django-ttag
- License: MIT
- Categories
- Package Index Owner: SmileyChris, lincolnloop
- DOAP record: django-ttag-2.4.xml
