Merge branch 'main' of http://10.10.1.136:3000/ismail/haikal
This commit is contained in:
commit
5779d1ea77
@ -74,15 +74,15 @@ urlpatterns = [
|
||||
),
|
||||
# path('dealers/<int:pk>/delete/', views.DealerDeleteView.as_view(), name='dealer_delete'),
|
||||
# CRM URLs
|
||||
path(
|
||||
"customers/create/", views.CustomerCreateView.as_view(), name="customer_create"
|
||||
),
|
||||
path("customers/", views.CustomerListView.as_view(), name="customer_list"),
|
||||
path(
|
||||
"customers/<slug:slug>/",
|
||||
views.CustomerDetailView.as_view(),
|
||||
name="customer_detail",
|
||||
),
|
||||
path(
|
||||
"customers/create/", views.CustomerCreateView.as_view(), name="customer_create"
|
||||
),
|
||||
path(
|
||||
"customers/<slug:slug>/update/",
|
||||
views.CustomerUpdateView.as_view(),
|
||||
@ -99,6 +99,7 @@ urlpatterns = [
|
||||
views.add_note_to_customer,
|
||||
name="add_note_to_customer",
|
||||
),
|
||||
path("crm/leads/create/", views.lead_create, name="lead_create"),
|
||||
path('update-lead-actions/', views.update_lead_actions, name='update_lead_actions'),
|
||||
path('crm/leads/lead_tracking/', views.lead_tracking, name='lead_tracking'),
|
||||
path('crm/leads/lead_view/', views.lead_view, name='lead_view'),
|
||||
@ -107,7 +108,6 @@ urlpatterns = [
|
||||
path(
|
||||
"crm/leads/<slug:slug>/view/", views.LeadDetailView.as_view(), name="lead_detail"
|
||||
),
|
||||
path("crm/leads/create/", views.lead_create, name="lead_create"),
|
||||
path(
|
||||
"crm/leads/<int:pk>/update/", views.LeadUpdateView.as_view(), name="lead_update"
|
||||
),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user