"request.account" needs to be switched out in favor of "request.user". By never accessing "request.account" directly in Python code but instead using the existing function get_account we can support both until the entire process is finished.
(Templates should go directly to request.user but depends on it having been set correctly everywhere first.)
"request.account" needs to be switched out in favor of "request.user". By never accessing "request.account" directly in Python code but instead using the existing function
get_accountwe can support both until the entire process is finished.(Templates should go directly to
request.userbut depends on it having been set correctly everywhere first.)