Quick Kanban is a Frappe app designed to enhance the default Kanban view in Frappe/ERPNext by replacing it with a Vue-based Kanban. This app aims to provide better performance and an improved user experience, especially for instances with a high volume of Kanban cards and frequent updates.
- Vue-based Kanban View: Improved performance and user interface.
- Optimized for Large Data: Handles hundreds of cards efficiently.
- Seamless Integration: Works seamlessly within the Frappe framework.
Follow the steps below to install and set up Quick Kanban in your Frappe/ERPNext instance.
Run the following command to get the Quick Kanban app from the repository:
bench get-app https://github.com/tridz-dev/quick_kanban.git
Once you have the app, install it on your desired site using the command below. Replace [sitename]
with the name of your site:
bench install-app --site [sitename] quick_kanban
After installation, To enable the new Kanban board, add the kanban_beta
attribute to the site_config.json
in your sites/[sitename]
directory.
"kanban_beta": 1
To enable the new Kanban board for specific users, add the usernames of desired users to the kanban_beta_users
list in site_config.json
.
For example:
"kanban_beta_users": [
"Username1",
"Username2"
]
Create a Kanban Board for any doctype using the desired field as a reference, and you're all set!
You can choose a field to be highlighted inside the Kanban card. To enable this feature, select a field as the Highlighted Field
for your Kanban board.
Additionally, you can assign a color for each value of that field in the highlight table of your Kanban Board. Simply type the expected value in the Tag column and select a corresponding color for it.
For example:
This project is licensed under the MIT License.