I want to signal two new template filters for Django.
Precise truncate words by chars
It truncates the text when it exceeds a certain number of characters and deletes the last word. Adds ‘…’ at the end of the text, only if truncated.
The difference between other similar filters is that this deletes the last word only if partial, so it is more precise and pleasant.
The snippet is here.
Divide a list into exact columns
It divides a list into an exact number of columns.
The difference between other similar filters it that the number of columns is guaranteed, even if there are not enough elements to fill all the columns.
The snippet is here.