blob: 42ec9d3db35339a1efe60ba1cf5df7616b1c3155 [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."),
Prateeksha Singh8aa45942019-03-04 14:00:02 +053014 "onboard": 1,
Nabin Hait419db492017-12-06 12:57:53 +053015 }
Vishalcc06d292017-09-15 22:30:55 +053016 ]
17 },
18 {
19 "label": _("Membership"),
20 "items": [
21 {
22 "type": "doctype",
23 "name": "Member",
24 "description": _("Member information."),
Prateeksha Singh8aa45942019-03-04 14:00:02 +053025 "onboard": 1,
Vishalcc06d292017-09-15 22:30:55 +053026 },
27 {
28 "type": "doctype",
29 "name": "Membership",
30 "description": _("Memebership Details"),
Prateeksha Singh8aa45942019-03-04 14:00:02 +053031 "onboard": 1,
Vishalcc06d292017-09-15 22:30:55 +053032 },
Vishale0184602017-09-18 17:21:40 +053033 {
34 "type": "doctype",
35 "name": "Membership Type",
36 "description": _("Memebership Type Details"),
37 },
Vishalcc06d292017-09-15 22:30:55 +053038 ]
Vishal10608e82017-09-19 12:42:55 +053039 },
Vishal7525bc62017-09-20 10:23:40 +053040 {
41 "label": _("Volunteer"),
42 "items": [
43 {
44 "type": "doctype",
45 "name": "Volunteer",
46 "description": _("Volunteer information."),
Prateeksha Singh8aa45942019-03-04 14:00:02 +053047 "onboard": 1,
Vishal7525bc62017-09-20 10:23:40 +053048 },
49 {
50 "type": "doctype",
51 "name": "Volunteer Type",
52 "description": _("Volunteer Type information."),
53 }
54 ]
55 },
56 {
57 "label": _("Donor"),
58 "items": [
59 {
60 "type": "doctype",
61 "name": "Donor",
62 "description": _("Donor information."),
63 },
64 {
65 "type": "doctype",
66 "name": "Donor Type",
67 "description": _("Donor Type information."),
68 }
69 ]
70 },
71 {
Shreya Shah4dc453d2018-04-24 12:19:36 +053072 "label": _("Loan Management"),
73 "icon": "icon-list",
74 "items": [
75 {
76 "type": "doctype",
77 "name": "Loan Type",
78 "description": _("Define various loan types")
79 },
80 {
81 "type": "doctype",
82 "name": "Loan Application",
83 "description": _("Loan Application")
84 },
85 {
86 "type": "doctype",
87 "name": "Loan"
88 },
89 ]
90 },
91 {
Vishal2c9ce192017-09-21 12:09:51 +053092 "label": _("Grant Application"),
93 "items": [
94 {
95 "type": "doctype",
96 "name": "Grant Application",
97 "description": _("Grant information."),
98 }
99 ]
Vishald5d08132017-09-22 13:22:46 +0530100 }
Vishalcc06d292017-09-15 22:30:55 +0530101 ]