Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

84 Zeilen
1.8 KiB

  1. from __future__ import unicode_literals
  2. from frappe import _
  3. def get_data():
  4. return [
  5. {
  6. "label": _("Documents"),
  7. "icon": "icon-star",
  8. "items": [
  9. {
  10. "type": "doctype",
  11. "name": "Web Page",
  12. "description": _("Content web page."),
  13. },
  14. {
  15. "type": "doctype",
  16. "name": "Blog Post",
  17. "description": _("Single Post (article)."),
  18. },
  19. {
  20. "type": "doctype",
  21. "name": "Web Form",
  22. "description": _("User editable form on Website."),
  23. },
  24. {
  25. "type": "doctype",
  26. "name": "Blogger",
  27. "description": _("User ID of a blog writer."),
  28. },
  29. {
  30. "type": "doctype",
  31. "name": "Website Slideshow",
  32. "description": _("Embed image slideshows in website pages."),
  33. },
  34. ]
  35. },
  36. {
  37. "label": _("Setup"),
  38. "icon": "icon-cog",
  39. "items": [
  40. {
  41. "type": "doctype",
  42. "name": "Website Settings",
  43. "description": _("Setup of top navigation bar, footer and logo."),
  44. },
  45. {
  46. "type": "doctype",
  47. "name": "Style Settings",
  48. "description": _("Setup of fonts and background."),
  49. },
  50. {
  51. "type": "doctype",
  52. "name": "Website Script",
  53. "description": _("Javascript to append to the head section of the page."),
  54. },
  55. {
  56. "type": "doctype",
  57. "name": "Blog Settings",
  58. "description": _("Write titles and introductions to your blog."),
  59. },
  60. {
  61. "type": "doctype",
  62. "name": "Blog Category",
  63. "description": _("Categorize blog posts."),
  64. },
  65. {
  66. "type": "doctype",
  67. "name": "About Us Settings",
  68. "description": _("Settings for About Us Page."),
  69. },
  70. {
  71. "type": "doctype",
  72. "name": "Contact Us Settings",
  73. "description": _("Settings for Contact Us Page."),
  74. },
  75. {
  76. "type": "doctype",
  77. "name": "Website Theme",
  78. "description": _("List of themes for Website."),
  79. }
  80. ]
  81. },
  82. ]