Hide keyboard shortcuts

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

1

2

3

4

5

6

7

8

9

10

11

12

class Request(object): 

def __init__(self, user, method): 

self.user = user 

self.method = method 

 

 

class FakeUser(object): 

is_authenticated = True 

 

def __init__(self, cached_groups, is_staff=False): 

self.cached_groups = cached_groups 

self.is_staff = is_staff