25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

67 lines
1.3 KiB

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