Changes between Initial Version and Version 1 of Ticket #17632


Ignore:
Timestamp:
Feb 4, 2012, 4:42:59 PM (12 years ago)
Author:
Łukasz Rekucki
Comment:

Please provide this in a form of a patch (diff against current Django trunk) attached to the ticket. Also, every new feature needs both tests and documentation. I'm not Dutch so I can't really speak about usefulness of this.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #17632

    • Property Needs documentation set
    • Property Needs tests set
    • Property Triage Stage UnreviewedAccepted
  • Ticket #17632 – Description

    initial v1  
    11I'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.
    22
    3 '''
     3{{{#!python
    44from django import template
    55from django.template.defaultfilters import stringfilter
     
    2828            pass
    2929    return singular_suffix
    30 '''
     30}}}
Back to Top