Coverage for bookie.views.accounts : 67%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
def account(request): """Index of account page
You can only load your own account page. If you try to view someone else's you'll just end up with your own.
""" # if auth fails, it'll raise an HTTPForbidden exception with ReqAuthorize(request): user = UserMgr.get(username=request.user.username)
return { 'user': user, 'username': user.username, } |