Skip to content

Commit 4bbd6c3

Browse files
Add documentation for lead management in Django CRM
1 parent 42c7359 commit 4bbd6c3

3 files changed

Lines changed: 151 additions & 4 deletions

File tree

docs/help/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ available features, and step-by-step instructions *(content is being supplemente
3333

3434
* [Requests](commercial-requests-management.md)
3535
* [Deals](deals-management.md)
36-
* Leads
36+
* [Leads](lead-management.md)
3737
* Companies
3838
* Emails in CRM
3939
* Payments
@@ -77,7 +77,7 @@ available features, and step-by-step instructions *(content is being supplemente
7777
* Currencies
7878
* [Deals](deals-management.md)
7979
* Emails in CRM
80-
* Leads
80+
* [Leads](lead-management.md)
8181
* Payments
8282
* Products
8383
* [Requests](commercial-requests-management.md)

docs/help/lead-management.md

Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
---
2+
title: Lead Management
3+
description: Learn how to manage leads in Django CRM, including lead creation, access permissions, lead list overview, searching, filtering, bulk actions, and exporting data.
4+
---
5+
6+
# **Lead Management**
7+
8+
The **Lead** object in Django [CRM](../index.md) represents a potential client.
9+
A lead may be an individual or a partially completed company/contact profile
10+
that has not yet been converted into Company and Contact Person.
11+
Effective lead management ensures that sales teams can qualify prospects,
12+
enrich their data, and convert relevant leads into companies and contacts.
13+
14+
This page explains how to view, manage, filter, sort, and convert leads inside Django CRM.
15+
16+
---
17+
18+
## **What Is a Lead?**
19+
20+
A lead contains basic information about a potential customer. The data may come from:
21+
22+
- Website requests
23+
- Form submissions
24+
- Manually added entries
25+
- Automatically created leads when a sales manager creates a **Deal**
26+
27+
If missing information about a company and contact person is received during the processing of a sales request,
28+
the Lead can be converted into a Company and Contact Person objects.
29+
30+
> For details on working with requests, see
31+
**[Commercial Requests Management](../features/crm-app-features.md#commercial-requests-management)**.
32+
33+
---
34+
35+
## **Adding Leads to the CRM**
36+
37+
Leads can enter the CRM in several ways:
38+
39+
### 1. Automatic Lead Creation
40+
41+
When a deal is created from an incoming query and the CRM
42+
detects insufficient customer data, a Lead is created automatically.
43+
44+
### 2. Manually Adding a Lead
45+
46+
Users can add leads manually:
47+
48+
- Click **Add Lead**.
49+
- Fill in the form fields and save.
50+
51+
### 3. Importing Leads from Excel
52+
53+
You can upload multiple leads at once:
54+
55+
1. Click **Import**.
56+
2. Select an Excel file prepared according to the CRM’s import format.
57+
3. Confirm the upload.
58+
59+
For exporting options, see the **Exporting Leads** section [below](#exporting-leads).
60+
61+
---
62+
63+
## **Access Permissions**
64+
65+
Lead visibility depends on the user’s CRM role and department:
66+
67+
- **Sales Managers** and **Operators** — can view and manage leads assigned to *their own department*.
68+
- **Company Managers** and **Super Operators** — have access to *all leads across all departments*.
69+
70+
---
71+
72+
## **Lead List Table**
73+
74+
Leads are displayed in a sortable table. Each column header is active, allowing you to sort leads by the selected field.
75+
76+
### Table Columns
77+
78+
- Lead Name / Full Name
79+
- Email Address
80+
- Company Name (*if any*)
81+
- Assigned Sales Manager
82+
- Country
83+
- Newsletter Status
84+
- Date Added
85+
86+
### Newsletter Status Icons
87+
88+
The lead’s position in your mailing activity is indicated by the color of the mailbox icon:
89+
90+
- **Red** — The lead has not yet received any newsletters.
91+
- **Turquoise** — The lead receives newsletters and has not unsubscribed.
92+
- **Gray** — The lead received newsletters but unsubscribed.
93+
94+
---
95+
96+
## **Searching Leads**
97+
98+
Use the search bar to find leads by:
99+
100+
- Name
101+
- Email
102+
- Company
103+
- Any keyword
104+
- Lead ID
105+
106+
---
107+
108+
## **Filtering Leads**
109+
110+
The CRM provides several filters to narrow down the lead list:
111+
112+
- Disqualification status
113+
- Assigned sales manager
114+
- Country
115+
- Newsletter subscription status
116+
- VIP status
117+
118+
Filters can be combined for more precise results.
119+
120+
---
121+
122+
## **Bulk Actions (*Action Menu*)**
123+
124+
Select one or more leads to perform bulk operations from the **Action** drop-down menu:
125+
126+
- Create Mass Mailing
127+
- Set VIP Status
128+
- Remove VIP Status
129+
- Export to Excel
130+
131+
These actions help manage large lead lists efficiently.
132+
133+
---
134+
135+
## **Exporting Leads**
136+
137+
You can export lead data in Excel format:
138+
139+
### Export Selected Leads
140+
141+
Choose leads using the table checkboxes, then select **Export to Excel** from the Action menu.
142+
143+
### Export All Leads
144+
145+
Use the **Export All** button to download the complete lead database.
146+

mkdocs.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,9 @@ nav:
9797
- Project management: help/project-management.md
9898
- Creating and assigning projects: help/creating-assigning-projects.md
9999
- CRM Module:
100-
- Commercial requests management: help/commercial-requests-management.md
101-
- Deals management: help/deals-management.md
100+
- Commercial request management: help/commercial-requests-management.md
101+
- Deal management: help/deals-management.md
102+
- Lead management: help/lead-management.md
102103

103104
extra:
104105
analytics:

0 commit comments

Comments
 (0)