Simple filter that truncates string to specific number of letters. Example usage in template:
{{ myvariable|truncatestring:20 }}
if myvariable is "That is my long string", the result will be: "That is my long s...".
Put the code into templatetags/.
1 2 3 4 5 6 7 8 9 10 11 | from django.template import Library
register = Library()
from django.template.defaultfilters import stringfilter
@register.filter
@stringfilter
def truncatestring(src, ln):
ret = src[:ln]
if len(src)>ln:
ret = ret[:ln-3]+'...'
return ret
|
More like this
- Form field with fixed value by roam 1 day, 12 hours ago
- New Snippet! by Antoliny0919 1 week ago
- Add Toggle Switch Widget to Django Forms by OgliariNatan 2 months, 3 weeks ago
- get_object_or_none by azwdevops 6 months, 2 weeks ago
- Mask sensitive data from logger by agusmakmun 8 months, 2 weeks ago
Comments
Please login first before commenting.