Django template tag to truncate text

前端 未结 9 1752
长情又很酷
长情又很酷 2020-12-12 18:40

Django has truncatewords template tag, which cuts the text at the given word count. But there is nothing like truncatechars.

What\'s the best w

9条回答
  •  时光说笑
    2020-12-12 19:25

    You can achieve your goal with similar code:

    {{ value_of_text|truncatechars:NUM_OF_CHARS_TO_TRUNCATE}}

    where NUM_OF_CHARS_TO_TRUNCATE is number of chars to leave.

提交回复
热议问题