2👍
✅
callback
is the view from your urls.py
that matches the url you are accessing. Django gets this callback
by calling resolver.resolve
(in the Django 1.4 version of the file you linked to, this happens on line 98).
In Python, functions are objects, so resolver.resolve
can return a function that can be called later.
Source:stackexchange.com