ABS() in Django template?

I pass negative values (-1,-2,5, etc.) to the template, but I would like to display them without a minus sign. How can this be done in Django? I didn’t find the built-in abs tag()…

You can use this package django-mathfilters · PyPI or can create custom template tags if you don’t want to install extra package.