You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

75 lines
1.5 KiB

  1. from __future__ import unicode_literals
  2. from frappe import _
  3. def get_data():
  4. return [
  5. {
  6. "module_name": "Desk",
  7. "label": _("Tools"),
  8. "color": "#FFF5A7",
  9. "reverse": 1,
  10. "icon": "octicon octicon-calendar",
  11. "type": "module"
  12. },
  13. {
  14. "module_name": "File Manager",
  15. "color": "#AA784D",
  16. "doctype": "File",
  17. "icon": "octicon octicon-file-directory",
  18. "label": _("File Manager"),
  19. "link": "List/File",
  20. "type": "list",
  21. "hidden": 1
  22. },
  23. {
  24. "module_name": "Website",
  25. "color": "#16a085",
  26. "icon": "octicon octicon-globe",
  27. "type": "module",
  28. "hidden": 1
  29. },
  30. {
  31. "module_name": "Integrations",
  32. "color": "#16a085",
  33. "icon": "octicon octicon-globe",
  34. "type": "module",
  35. "hidden": 1
  36. },
  37. {
  38. "module_name": "Setup",
  39. "color": "#bdc3c7",
  40. "reverse": 1,
  41. "icon": "octicon octicon-settings",
  42. "type": "module",
  43. "hidden": 1
  44. },
  45. {
  46. "module_name": 'Email Inbox',
  47. "type": 'list',
  48. "label": 'Email Inbox',
  49. "_label": _('Email Inbox'),
  50. "_id": 'Email Inbox',
  51. "_doctype": 'Communication',
  52. "icon": 'fa fa-envelope-o',
  53. "color": '#589494',
  54. "link": 'List/Communication/Inbox'
  55. },
  56. {
  57. "module_name": "Core",
  58. "label": "Developer",
  59. "_label": _("Developer"),
  60. "color": "#589494",
  61. "icon": "octicon octicon-circuit-board",
  62. "type": "module",
  63. "system_manager": 1,
  64. "hidden": 1
  65. },
  66. {
  67. "module_name": 'Contacts',
  68. "type": 'module',
  69. "icon": "octicon octicon-book",
  70. "color": '#FFAEDB',
  71. "hidden": 1,
  72. }
  73. ]