Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

45 lignes
819 B

  1. from frappe import _
  2. data = {
  3. "Calendar": {
  4. "color": "#2980b9",
  5. "icon": "icon-calendar",
  6. "label": _("Calendar"),
  7. "link": "Calendar/Event",
  8. "type": "view"
  9. },
  10. "Messages": {
  11. "color": "#9b59b6",
  12. "icon": "icon-comments",
  13. "label": _("Messages"),
  14. "link": "messages",
  15. "type": "page"
  16. },
  17. "To Do": {
  18. "color": "#f1c40f",
  19. "icon": "icon-check",
  20. "label": _("To Do"),
  21. "link": "List/ToDo",
  22. "doctype": "ToDo",
  23. "type": "list"
  24. },
  25. "Website": {
  26. "color": "#16a085",
  27. "icon": "icon-globe",
  28. "link": "website-home",
  29. "type": "module"
  30. },
  31. "Installer": {
  32. "color": "#888",
  33. "icon": "icon-download",
  34. "link": "applications",
  35. "type": "page",
  36. "label": _("Installer")
  37. },
  38. "Setup": {
  39. "color": "#bdc3c7",
  40. "icon": "icon-wrench",
  41. "link": "Setup",
  42. "type": "setup"
  43. },
  44. }