Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

8 лет назад
8 лет назад
8 лет назад
1234567891011121314151617181920212223
  1. # Custom Module Icon
  2. If you want to create a custom icon for your module, you will have to create an SVG file for your module and set the path to this file in the `desktop/config.py` of your app.<br>
  3. This icon is loaded via AJAX first time, then it will be rendered.
  4. Example:
  5. from frappe import _
  6. def get_data():
  7. return {
  8. "Frappé Apps": {
  9. "color": "orange",
  10. "icon": "assets/frappe/images/frappe.svg",
  11. "label": _("Frappé.io Portal"),
  12. "type": "module"
  13. }
  14. }
  15. > PS: A great place to buy SVG icons for a low cost is the awesome [Noun Project](http://thenounproject.com/)
  16. <!-- markdown -->