2017-09-15 17:00:55 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
from frappe import _
|
|
|
|
|
|
|
|
def get_data():
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
"label": _("Chapter"),
|
|
|
|
"icon": "fa fa-star",
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Chapter",
|
|
|
|
"description": _("Chapter information."),
|
2017-12-06 07:27:53 +00:00
|
|
|
}
|
2017-09-15 17:00:55 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Membership"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Member",
|
|
|
|
"description": _("Member information."),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Membership",
|
|
|
|
"description": _("Memebership Details"),
|
|
|
|
},
|
2017-09-18 11:51:40 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Membership Type",
|
|
|
|
"description": _("Memebership Type Details"),
|
|
|
|
},
|
2017-09-15 17:00:55 +00:00
|
|
|
]
|
2017-09-19 07:12:55 +00:00
|
|
|
},
|
2017-09-20 04:53:40 +00:00
|
|
|
{
|
|
|
|
"label": _("Volunteer"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Volunteer",
|
|
|
|
"description": _("Volunteer information."),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Volunteer Type",
|
|
|
|
"description": _("Volunteer Type information."),
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Donor"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Donor",
|
|
|
|
"description": _("Donor information."),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Donor Type",
|
|
|
|
"description": _("Donor Type information."),
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2017-09-21 06:39:51 +00:00
|
|
|
{
|
|
|
|
"label": _("Grant Application"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Grant Application",
|
|
|
|
"description": _("Grant information."),
|
|
|
|
}
|
|
|
|
]
|
2017-09-22 07:52:46 +00:00
|
|
|
}
|
2017-09-15 17:00:55 +00:00
|
|
|
]
|