I noticed there is built-in add filter, but I wasn\'t able to find divide.
add
divide
I am new to Django and not sure if there is a such filter.
There is a Python module to do math operations in your templates: Django-Mathfilters.
It contains add as you said, but also div to divide:
div
8 / 3 = {{ 8|div:3 }}