Django-CRM is a customer management system built with Django that allows users to register, log in, and manage customer records efficiently. Using MySQL, it features dynamic HTML pages, URL routing, and database interactions.
- ✅ User Registration & Authentication (Login, Logout)
- ✅ Admin Dashboard for Customer Management
- ✅ CRUD Operations: Add, Update, Delete Customer Records
- ✅ MySQL Database Integration
- ✅ Role-Based Access Control (Admin/User)
- ✅ Pagination and Search Functionality
- Backend: Django (Python)
- Frontend: HTML, CSS, Bootstrap
- Database: MySQL
- Authentication: Django’s built-in Auth System
- git clone https://github.com/adarshaadi06/Django-CRM.git
- cd Django-CRM
- python -m venv venv
- source venv/bin/activate # On macOS/Linux
- venv\Scripts\activate # On Windows
- pip install -r requirements.txt
- python manage.py makemigrations
- python manage.py migrate
- python manage.py runserver