Django Template Filter - cut

Definition and Usage

The cut filter removes the specified phrase from the value.

The cut filter is case sensitive.

All occurences of the specified phrase/character are removed.

Example

Remove all "e" characters from the name "Emil Refsnes":

<h1>{{ name|cut:"e" }}.</h1>

Syntax

{{ value|cut:phrase }}

Template filters are defined by using a pipe | character followed by the name of the filter.

Arguments are defined by using a colon : character followed by the argument value.

Arguments

Value Description
phrase Required. A string specifying the part to remove from the value.