#11204 closed (fixed)
Typo in template documentation
Reported by: | martin | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | 1.0 |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Ready for checkin | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
http://docs.djangoproject.com/en/dev/ref/templates/builtins/
pluralize
Returns a plural suffix if the value is not 1. By default, this suffix is 's'.
Example:
You have {{ num_walruses }} walrus{{ num_walrus|pluralize:"es" }}.
we should read:
You have {{ num_walrus }} walrus{{ num_walrus|pluralize:"es" }}.
Attachments (1)
Change History (4)
by , 15 years ago
Attachment: | 11204.diff added |
---|
comment:1 by , 15 years ago
Has patch: | set |
---|---|
Triage Stage: | Unreviewed → Ready for checkin |
comment:2 by , 15 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:3 by , 15 years ago
Note:
See TracTickets
for help on using tickets.
(In [10849]) Fixed #11204 -- Corrected typo in the pluralize doc. Thanks martin and SmileyChris.