blob: 60ca80e8150b58d468beb45e972ba6f539ab5054 [file] [log] [blame]
Vishalcc06d292017-09-15 22:30:55 +05301from __future__ import unicode_literals
2from frappe import _
3
4def get_data():
5 return [
6 {
7 "label": _("Chapter"),
8 "icon": "fa fa-star",
9 "items": [
10 {
11 "type": "doctype",
12 "name": "Chapter",
13 "description": _("Chapter information."),
Nabin Hait419db492017-12-06 12:57:53 +053014 }
Vishalcc06d292017-09-15 22:30:55 +053015 ]
16 },
17 {
18 "label": _("Membership"),
19 "items": [
20 {
21 "type": "doctype",
22 "name": "Member",
23 "description": _("Member information."),
24 },
25 {
26 "type": "doctype",
27 "name": "Membership",
28 "description": _("Memebership Details"),
29 },
Vishale0184602017-09-18 17:21:40 +053030 {
31 "type": "doctype",
32 "name": "Membership Type",
33 "description": _("Memebership Type Details"),
34 },
Vishalcc06d292017-09-15 22:30:55 +053035 ]
Vishal10608e82017-09-19 12:42:55 +053036 },
Vishal7525bc62017-09-20 10:23:40 +053037 {
38 "label": _("Volunteer"),
39 "items": [
40 {
41 "type": "doctype",
42 "name": "Volunteer",
43 "description": _("Volunteer information."),
44 },
45 {
46 "type": "doctype",
47 "name": "Volunteer Type",
48 "description": _("Volunteer Type information."),
49 }
50 ]
51 },
52 {
53 "label": _("Donor"),
54 "items": [
55 {
56 "type": "doctype",
57 "name": "Donor",
58 "description": _("Donor information."),
59 },
60 {
61 "type": "doctype",
62 "name": "Donor Type",
63 "description": _("Donor Type information."),
64 }
65 ]
66 },
67 {
Vishal2c9ce192017-09-21 12:09:51 +053068 "label": _("Grant Application"),
69 "items": [
70 {
71 "type": "doctype",
72 "name": "Grant Application",
73 "description": _("Grant information."),
74 }
75 ]
Vishald5d08132017-09-22 13:22:46 +053076 }
Vishalcc06d292017-09-15 22:30:55 +053077 ]