Changes between Initial Version and Version 1 of Ticket #17632
- Timestamp:
- Feb 4, 2012, 4:42:59 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17632
- Property Needs documentation set
- Property Needs tests set
- Property Triage Stage Unreviewed → Accepted
-
Ticket #17632 – Description
initial v1 1 1 I've created a small filter that can be used in the same way as 'pluralize'. It basically adds 'en' (most common pluralized word in Dutch) when used. 2 2 3 ''' 3 {{{#!python 4 4 from django import template 5 5 from django.template.defaultfilters import stringfilter … … 28 28 pass 29 29 return singular_suffix 30 ''' 30 }}}