# Django-CRM
(Customer Relationship Management)
The use of CRM by companies allows them to improve the sales performance of their products and services. The more complex and time-consuming the sales process, the greater the improvement.
This CRM is designed for individual use by any company. Access to the company's business data remains solely under its control.
Django CRM is an open-source Django-based project. It is written in Python (python crm).
Frontend and backend are almost entirely based on the Django Admin site.
CRM uses adaptive Admin HTML templates out-of-the-box.
Django is an excellently documented framework with lots of examples.
The documentation on the Admin site takes up only one web page.
The original idea is that since Django Admin is already a professional object management interface with a flexible permissions system for users (view, change, add, and delete objects), all you need to do is create models for the objects (such as Leads, Requests, Deals, Companies, etc.) and add business logic.
All this ensures:
- significantly easier project customization and development;
- simpler project deployment and production server support.
The project code is stable (has been in practical use for many years).
CRM the project consists of the following main applications:
The project also contains supporting applications such as:
Chat, VoIP, Help, …
In total, at the moment, there are 79 tables in the database.
There is a built-in Email client using SMTP and IMAP protocols.
Among other things, this allows the Django CRM to automatically save a copy of all correspondence for each request and deal in its database. Even if the correspondence was carried out in the user’s mail account (out of the CRM). The ticket mechanism is used for this.
CRM is able to work with email accounts protected by two-factor authentication, like gmail.
Django CRM has full support for translation of interface, formatting of dates, times and time zones.
This project is deployed as a regular django project.
Please refer to:
- the CRM installation and configuration guide;
- the Django-CRM user guide.
Compatibility
- Django 5.0.x
- Python 3.10+
- MySQL 8.0.11+ and PostgreSQL 12+
All types of contributions are welcome.