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.
 
 
 
 
 
 

111 line
2.3 KiB

  1. from webnotes import _
  2. data = [
  3. {
  4. "label": _("Users and Permissions"),
  5. "icon": "icon-group",
  6. "items": [
  7. {
  8. "type": "doctype",
  9. "name": "Profile",
  10. "description": _("System and Website Users")
  11. },
  12. {
  13. "type": "doctype",
  14. "name": "Role",
  15. "description": _("User Roles")
  16. },
  17. {
  18. "type": "page",
  19. "name": "permission-manager",
  20. "label": "Permission Manager",
  21. "icon": "icon-lock",
  22. "description": _("Set Permissions on Document Types and Roles")
  23. },
  24. {
  25. "type": "page",
  26. "name": "user-properties",
  27. "label": "User Properties",
  28. "icon": "icon-user",
  29. "description": _("Set Defaults and Restrictions for Users")
  30. }
  31. ]
  32. },
  33. {
  34. "label": _("Workflow"),
  35. "icon": "icon-random",
  36. "items": [
  37. {
  38. "type": "doctype",
  39. "name": "Workflow",
  40. "description": _("Define workflows for forms.")
  41. },
  42. {
  43. "type": "doctype",
  44. "name": "Workflow State",
  45. "description": _("States for workflow (e.g. Draft, Approved, Cancelled).")
  46. },
  47. {
  48. "type": "doctype",
  49. "name": "Workflow Action",
  50. "description": _("Actions for workflow (e.g. Approve, Cancel).")
  51. },
  52. ]
  53. },
  54. {
  55. "label": _("Tools"),
  56. "icon": "icon-wrench",
  57. "items": [
  58. {
  59. "type": "page",
  60. "name": "data-import-tool",
  61. "label": _("Import / Export Data"),
  62. "icon": "icon-upload",
  63. "description": _("Import / Export Data from .csv files.")
  64. },
  65. {
  66. "type": "page",
  67. "name": "modules_setup",
  68. "label": _("Show / Hide Modules"),
  69. "icon": "icon-upload",
  70. "description": _("Show or hide modules globally.")
  71. },
  72. {
  73. "type": "doctype",
  74. "name": "Naming Series",
  75. "description": _("Set numbering series for transactions.")
  76. },
  77. {
  78. "type": "doctype",
  79. "name": "Rename Tool",
  80. "description": _("Rename many items by uploading a .csv file.")
  81. },
  82. {
  83. "type": "doctype",
  84. "name": "File Data",
  85. "description": _("Manage uploaded files.")
  86. }
  87. ]
  88. },
  89. {
  90. "label": _("Customize"),
  91. "icon": "icon-glass",
  92. "items": [
  93. {
  94. "type": "doctype",
  95. "name": "Customize Form",
  96. "description": _("Change field properties (hide, readonly, permission etc.)")
  97. },
  98. {
  99. "type": "doctype",
  100. "name": "Custom Field",
  101. "description": _("Add fields to forms.")
  102. },
  103. {
  104. "type": "doctype",
  105. "name": "Custom Script",
  106. "description": _("Add custom javascript to forms.")
  107. }
  108. ]
  109. }
  110. ]