* created/moved the files * added the model for the downloading the data * add the file with the error data * changes added other changes and fix codacy * changes in the config and utils files * fixed the test cases * minor changes in the data keys dict * changed the test file location * fixed the tests * set the route in the list view and show only erors * minor fixes in the childtable import and log tables rendering * Refactor Download dialog to use MultiCheck
74 lines
1.5 KiB
Python
74 lines
1.5 KiB
Python
from __future__ import unicode_literals
|
|
from frappe import _
|
|
|
|
def get_data():
|
|
return [
|
|
{
|
|
"module_name": "Desk",
|
|
"label": _("Tools"),
|
|
"color": "#FFF5A7",
|
|
"reverse": 1,
|
|
"icon": "octicon octicon-calendar",
|
|
"type": "module"
|
|
},
|
|
{
|
|
"module_name": "File Manager",
|
|
"color": "#AA784D",
|
|
"doctype": "File",
|
|
"icon": "octicon octicon-file-directory",
|
|
"label": _("File Manager"),
|
|
"link": "List/File",
|
|
"type": "list",
|
|
"hidden": 1
|
|
},
|
|
{
|
|
"module_name": "Website",
|
|
"color": "#16a085",
|
|
"icon": "octicon octicon-globe",
|
|
"type": "module",
|
|
"hidden": 1
|
|
},
|
|
{
|
|
"module_name": "Integrations",
|
|
"color": "#16a085",
|
|
"icon": "octicon octicon-globe",
|
|
"type": "module",
|
|
"hidden": 1
|
|
},
|
|
{
|
|
"module_name": "Setup",
|
|
"color": "#bdc3c7",
|
|
"reverse": 1,
|
|
"icon": "octicon octicon-settings",
|
|
"type": "module",
|
|
"hidden": 1
|
|
},
|
|
{
|
|
"module_name": 'Email Inbox',
|
|
"type": 'list',
|
|
"label": 'Email Inbox',
|
|
"_label": _('Email Inbox'),
|
|
"_id": 'Email Inbox',
|
|
"_doctype": 'Communication',
|
|
"icon": 'fa fa-envelope-o',
|
|
"color": '#589494',
|
|
"link": 'List/Communication/Inbox'
|
|
},
|
|
{
|
|
"module_name": "Core",
|
|
"label": "Developer",
|
|
"_label": _("Developer"),
|
|
"color": "#589494",
|
|
"icon": "octicon octicon-circuit-board",
|
|
"type": "module",
|
|
"system_manager": 1,
|
|
"hidden": 1
|
|
},
|
|
{
|
|
"module_name": 'Contacts',
|
|
"type": 'module',
|
|
"icon": "octicon octicon-book",
|
|
"color": '#FFAEDB',
|
|
"hidden": 1,
|
|
}
|
|
]
|