0
I wonder if there is a tag to show part of a description
{{ post.description | tag-aqui }}
0
I wonder if there is a tag to show part of a description
{{ post.description | tag-aqui }}
1
Since the intention is only to limit the number of characters, just use the filter slice
:
{{ post.description | slice:"0:255" }}
This way, characters in positions between 0 and 255 will be displayed.
Browser other questions tagged python django
You are not signed in. Login or sign up in order to post.
By "a part" you mean limit the number of characters?
– Woss
Yes, limit the number so that the full description is seen when detailing the post.
– imp