25 lines
375 B
Python
25 lines
375 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'
|
|
}
|