Inside django template, I would like to get object\'s name using object\'s pk. For instance, given that I have pk of object from class A
, I would like to do somethi
You can't do that in Django. From the docs:
Because Django intentionally limits the amount of logic processing available in the template language, it is not possible to pass arguments to method calls accessed from within templates. Data should be calculated in views, then passed to templates for display.