Class Truncator
An object used to truncate text, either by characters or words.
Declaration
source linkDocumentation
Methods
▶ def __init__(self, text) overrideinherited doc Pass in a callable that returns the object to be wrapped.
This method overrides django.utils.functional.SimpleLazyObject.__init__.
If copies are made of the resulting SimpleLazyObject, which can happen
in various circumstances within Django, then you must ensure that the
callable can be safely run more than once and will return the same
value.
▶ def chars(self, num, truncate=None, html=False) Return the text truncated to be no longer than the specified number of characters.
`truncate` specifies what should be used to notify that the string has
been truncated, defaulting to a translatable string of an ellipsis.
▷ def words(self, num, truncate=None, html=False) Truncate a string after a certain number of words. `truncate` specifies what should be used to notify that the string has been truncated, defaulting to ellipsis.