- Author:
- pigletto
- Posted:
- March 6, 2009
- Language:
- Python
- Version:
- 1.0
- Tags:
- filter string
- Score:
- 0 (after 0 ratings)
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
- Automatically setup raw_id_fields ForeignKey & OneToOneField by agusmakmun 8 months ago
- Crispy Form by sourabhsinha396 8 months, 3 weeks ago
- ReadOnlySelect by mkoistinen 9 months ago
- Verify events sent to your webhook endpoints by santos22 10 months ago
- Django Language Middleware by agusmakmun 10 months, 2 weeks ago
Comments
Please login first before commenting.