Jinja2 pluralize filters.
Project description
Jinja2 pluralize filters.
Free software: BSD license
Documentation: http://jinja2_pluralize.rtfd.org.
Features
Simple pluralize filter based on inflect.py. For example, this renders as geese:
{{ 'goose'|pluralize }}
Django-style pluralize filter. Works as described in the Django docs. For example, this renders as votes:
vote{{ 0|pluralize }}
Usage
To use it with Jinja2, update the filters dict on the environment like this:
from jinja2 import Environment
from jinja2_pluralize import pluralize_dj
env = Environment()
env.filters['pluralize'] = pluralize_dj
tmpl = env.from_string('vote{{ 0|pluralize }}')
assert tmpl.render() == 'votes'
History
0.2.1 (2014-07-09)
0.2.0 (2014-07-02)
Package works as per the README.
0.1.0 (2014-04-25)
First release on PyPI.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
jinja2_pluralize-0.2.1.tar.gz
(12.3 kB
view details)
File details
Details for the file jinja2_pluralize-0.2.1.tar.gz
.
File metadata
- Download URL: jinja2_pluralize-0.2.1.tar.gz
- Upload date:
- Size: 12.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a9af6f4a15b0e005dd47ca3d8162a27fba0119e00e32f9288ab3b6e7af89f5b |
|
MD5 | 3e68c6e85d00bb7cf0ddcc5941f4a738 |
|
BLAKE2b-256 | 58abd28f1eafff5f38fc0e73006a5546a2d9683fd8f9670d60d4c016ca3b0c49 |