2017-09-15 22:30:55 +05:30
|
|
|
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 12:57:53 +05:30
|
|
|
}
|
2017-09-15 22:30:55 +05:30
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Membership"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Member",
|
|
|
|
"description": _("Member information."),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Membership",
|
|
|
|
"description": _("Memebership Details"),
|
|
|
|
},
|
2017-09-18 17:21:40 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Membership Type",
|
|
|
|
"description": _("Memebership Type Details"),
|
|
|
|
},
|
2017-09-15 22:30:55 +05:30
|
|
|
]
|
2017-09-19 12:42:55 +05:30
|
|
|
},
|
2017-09-20 10:23:40 +05:30
|
|
|
{
|
|
|
|
"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 12:09:51 +05:30
|
|
|
{
|
|
|
|
"label": _("Grant Application"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Grant Application",
|
|
|
|
"description": _("Grant information."),
|
|
|
|
}
|
|
|
|
]
|
2017-09-22 13:22:46 +05:30
|
|
|
}
|
2017-09-15 22:30:55 +05:30
|
|
|
]
|