In a django template, if I have a key within the context dictionary assocoated with another dictionary (a nested dictionary), I know how to itterate over it (how to iterate through dictionary in a dictionary in django template?) but I need to find a value by key.
like {{ nested_dictionary['key'] }}
But I'm guessing not exactly that...
Filters could be used, but is there a better way?