link member in dynamic link table

This commit is contained in:
Vishal
2017-09-15 22:30:55 +05:30
parent 50f13e17a7
commit cc06d291c6
2 changed files with 68 additions and 1 deletions

View File

@@ -0,0 +1,37 @@
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."),
},
{
"type": "doctype",
"name": "Chapter Message",
"description": _("Chapter Message."),
},
]
},
{
"label": _("Membership"),
"items": [
{
"type": "doctype",
"name": "Member",
"description": _("Member information."),
},
{
"type": "doctype",
"name": "Membership",
"description": _("Memebership Details"),
},
]
}
]