ERPNext Calender view

Hi all,
I am started using ERPNext 7. I need to customize the Calendar page in the desk. That is I want to add a table in the side of the calendar.
Is it possible?
Or can anybody tell me where is the .json file or related file that used for creating calendar. (both design and code files).

Thanks

@Amalendu

You can check following file, frappe/frappe/public/js/frappe/views/calendar.js in your frappe apps folder to start with your intended customization in the calendar.

Other files that you might need to work with,

- "frappe/desk/calendar.py"
- "frappe/public/js/frappe/views/calendar_base.js"
- "frappe/desk/doctype/event/event_calendar.js"
- "frappe/frappe/public/js/lib/fullcalendar/gcal.js"
- "frappe/public/less/calendar.less"

Hope this helps you to get started with customizing the calendar.

2 Likes

@shreyasp

Thank you…
Let me try…