What happened to the context.locals

In a template the scope for all data references is context.locals, i.e. any reference to a variable called 'my_name' actually means context.locals.my_name. Publishing objects for use by the template means storing them in ctx.locals.

Parent: PuzzledAboutBitsAndPieces