988 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			988 B
		
	
	
	
	
	
	
	
title
| title | 
|---|
| User Object | 
The User object has the following attributes:
- 
username: User's username.
- 
emailUser's email.
- 
nameUser's display name.
- 
is_staffBoolean field if user is staff.
- 
is_activeBoolean field if user is active.
- 
date_joinedDate user joined/was created.
- 
password_change_dateDate password was last changed.
- 
attributesDynamic attributes.
- 
group_attributesMerged attributes of all groups the user is member of and the user's own attributes.
- 
ak_groupsThis is a queryset of all the user's groups.You can do additional filtering like user.ak_groups.filter(name__startswith='test')see here To get the name of all groups, you can do [group.name for group in user.ak_groups.all()]
Examples
List all the User's group names:
for group in user.ak_groups.all():
    yield group.name
