24 lines
		
	
	
		
			374 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			374 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from __future__ import unicode_literals
 | |
| 
 | |
| data = {
 | |
| 	'desktop_icons': [
 | |
| 		'Non Profit',
 | |
| 		'Member',
 | |
| 		'Donor',
 | |
| 		'Volunteer',
 | |
| 		'Grant Application',
 | |
| 		'Accounts',
 | |
| 		'Buying',
 | |
| 		'HR',
 | |
| 		'ToDo'
 | |
| 	],
 | |
| 	'restricted_roles': [
 | |
| 		'Non Profit Manager',
 | |
| 		'Non Profit Member',
 | |
| 		'Non Profit Portal User'
 | |
| 	],
 | |
| 	'modules': [
 | |
| 		'Non Profit'
 | |
| 	],
 | |
| 	'default_portal_role': 'Non Profit Manager'
 | |
| } |