blob: f64e7221fa34b1fb0783434d41b028e0410838d3 [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."),
14 },
15 {
16 "type": "doctype",
17 "name": "Chapter Message",
18 "description": _("Chapter Message."),
19 },
20 ]
21 },
22 {
23 "label": _("Membership"),
24 "items": [
25 {
26 "type": "doctype",
27 "name": "Member",
28 "description": _("Member information."),
29 },
30 {
31 "type": "doctype",
32 "name": "Membership",
33 "description": _("Memebership Details"),
34 },
Vishale0184602017-09-18 17:21:40 +053035 {
36 "type": "doctype",
37 "name": "Membership Type",
38 "description": _("Memebership Type Details"),
39 },
Vishalcc06d292017-09-15 22:30:55 +053040 ]
Vishal10608e82017-09-19 12:42:55 +053041 },
Vishal7525bc62017-09-20 10:23:40 +053042 {
43 "label": _("Volunteer"),
44 "items": [
45 {
46 "type": "doctype",
47 "name": "Volunteer",
48 "description": _("Volunteer information."),
49 },
50 {
51 "type": "doctype",
52 "name": "Volunteer Type",
53 "description": _("Volunteer Type information."),
54 }
55 ]
56 },
57 {
58 "label": _("Donor"),
59 "items": [
60 {
61 "type": "doctype",
62 "name": "Donor",
63 "description": _("Donor information."),
64 },
65 {
66 "type": "doctype",
67 "name": "Donor Type",
68 "description": _("Donor Type information."),
69 }
70 ]
71 },
72 {
73 "label": _("Event"),
74 "items": [
75 {
76 "type": "doctype",
77 "name": "Member",
78 "description": _("Member information."),
79 }
80 ]
81 },
82 {
83 "label": _("Setup Meeting"),
84 "items": [
85 {
86 "type": "doctype",
87 "name": "Member",
88 "description": _("Member information."),
89 }
90 ]
91 },
Vishalcc06d292017-09-15 22:30:55 +053092 ]