Hello,
I’ve created a custom app and also it’s doctype (Klienti). Now I trying to show it on main dashboard, but it’s not showing…
My klienti.py file in /custom_app/custom_app/config/
from __future__ import unicode_literals
from frappe import _
def get_data():
return [
{
"label": _("K-centrum Karlovy Vary"),
"items": [
{
"type": "doctype",
"name": "Klienti",
"description": _("Seznam klientu"),
}
]
}
]
Does anyone know how to display it on main dashboard?
Thanks!
Filip