Reading the Django doc
Note that “bar” in a template expression like {{ foo.bar }} will be interpreted as a literal string and not using the value of the variable “bar”, if one exists in the template context
Does that mean that "bar" is some special keyword? Or that a variable called 'bar'(not belonging to object foo) can not be accessed like above?
I know I am missing something simple here, but what?