Calling functions from the template is not possible in Django normally, however this [`call templatetag`](https://dj-angles.adamghill.com/en/latest/template-tags/call.html) provides this capability for any method you would like to evaluate. It is available in the [`dj-angles`](https://pypi.org/project/dj-angles/) library and can be installed via `pip install dj-angles`.
```django
{% call obj.get_something(...) as something %}
{{ something }}
```
Calling functions from the template is not possible in Django normally, however this [`call templatetag`](https://dj-angles.adamghill.com/en/latest/template-tags/call.html) provides this capability for any method you would like to evaluate. It is available in the [`dj-angles`](https://pypi.org/project/dj-angles/) library and can be installed via `pip install dj-angles`.
```django
{% call obj_customer.get_something(...) as something %}
{{ something }}
```