Alignment filters add whitespace on one or both sides of the value.
Variable
sentence = 'Let’s eat, grandpa!'
Template
{{ sentence|cut:',' }
Result
Let’s eat grandpa!
Argument: s
(required)
– string to cut from the value.
Alignment filters add whitespace on one or both sides of the value.
sentence = 'Let’s eat, grandpa!'
{{ sentence|cut:',' }
Let’s eat grandpa!
Did we get something wrong? Is there a use case for the
cut
filter that we should add?
Please let us know.
Commentary
It is hard to think of a good use case for this.