diff --git a/crm/api/doc.py b/crm/api/doc.py
index fd5f6172..02d14b99 100644
--- a/crm/api/doc.py
+++ b/crm/api/doc.py
@@ -165,10 +165,10 @@ def get_field_obj(field):
"name": field.fieldname,
}
- obj["placeholder"] = "Add " + field.label.lower() + "..."
+ obj["placeholder"] = "Add " + field.label + "..."
if field.fieldtype == "Link":
- obj["placeholder"] = "Select " + field.label.lower() + "..."
+ obj["placeholder"] = "Select " + field.label + "..."
obj["doctype"] = field.options
elif field.fieldtype == "Select":
obj["options"] = [{"label": option, "value": option} for option in field.options.split("\n")]
diff --git a/crm/fcrm/doctype/crm_call_log/crm_call_log.py b/crm/fcrm/doctype/crm_call_log/crm_call_log.py
index 8e0c1841..4369e0a2 100644
--- a/crm/fcrm/doctype/crm_call_log/crm_call_log.py
+++ b/crm/fcrm/doctype/crm_call_log/crm_call_log.py
@@ -68,7 +68,7 @@ class CRMCallLog(Document):
'width': '9rem',
},
{
- 'label': 'Created on',
+ 'label': 'Created On',
'type': 'Datetime',
'key': 'creation',
'width': '8rem',
diff --git a/crm/fcrm/doctype/crm_deal/crm_deal.py b/crm/fcrm/doctype/crm_deal/crm_deal.py
index 7774eb3c..78032c55 100644
--- a/crm/fcrm/doctype/crm_deal/crm_deal.py
+++ b/crm/fcrm/doctype/crm_deal/crm_deal.py
@@ -86,20 +86,20 @@ class CRMDeal(Document):
'width': '12rem',
},
{
- 'label': 'Mobile no',
+ 'label': 'Mobile No',
'type': 'Data',
'key': 'mobile_no',
'width': '11rem',
},
{
- 'label': 'Deal owner',
+ 'label': 'Deal Owner',
'type': 'Link',
'key': 'deal_owner',
'options': 'User',
'width': '10rem',
},
{
- 'label': 'Last modified',
+ 'label': 'Last Modified',
'type': 'Datetime',
'key': 'modified',
'width': '8rem',
diff --git a/crm/fcrm/doctype/crm_lead/crm_lead.py b/crm/fcrm/doctype/crm_lead/crm_lead.py
index 98c8e4c4..d41cfd3f 100644
--- a/crm/fcrm/doctype/crm_lead/crm_lead.py
+++ b/crm/fcrm/doctype/crm_lead/crm_lead.py
@@ -165,20 +165,20 @@ class CRMLead(Document):
'width': '12rem',
},
{
- 'label': 'Mobile no',
+ 'label': 'Mobile No',
'type': 'Data',
'key': 'mobile_no',
'width': '11rem',
},
{
- 'label': 'Lead owner',
+ 'label': 'Lead Owner',
'type': 'Link',
'key': 'lead_owner',
'options': 'User',
'width': '10rem',
},
{
- 'label': 'Last modified',
+ 'label': 'Last Modified',
'type': 'Datetime',
'key': 'modified',
'width': '8rem',
diff --git a/crm/fcrm/doctype/crm_organization/crm_organization.py b/crm/fcrm/doctype/crm_organization/crm_organization.py
index 1cdae09c..daca91ff 100644
--- a/crm/fcrm/doctype/crm_organization/crm_organization.py
+++ b/crm/fcrm/doctype/crm_organization/crm_organization.py
@@ -46,7 +46,7 @@ class CRMOrganization(Document):
'width': '14rem',
},
{
- 'label': 'Last modified',
+ 'label': 'Last Modified',
'type': 'Datetime',
'key': 'modified',
'width': '8rem',
diff --git a/crm/overrides/contact.py b/crm/overrides/contact.py
index 64c2cc8b..8316e0f8 100644
--- a/crm/overrides/contact.py
+++ b/crm/overrides/contact.py
@@ -45,7 +45,7 @@ class CustomContact(Contact):
'width': '12rem',
},
{
- 'label': 'Last modified',
+ 'label': 'Last Modified',
'type': 'Datetime',
'key': 'modified',
'width': '8rem',
diff --git a/frontend/src/components/Activities.vue b/frontend/src/components/Activities.vue
index 36993622..60e6e2f7 100644
--- a/frontend/src/components/Activities.vue
+++ b/frontend/src/components/Activities.vue
@@ -11,19 +11,19 @@
- Make a call
+ Make a Call
@@ -118,7 +118,7 @@
:options="taskStatusOptions(updateTaskStatus, task)"
@click.stop
>
-
+
@@ -131,7 +131,7 @@
label: 'Delete',
onClick: () => {
$dialog({
- title: 'Delete task',
+ title: 'Delete Task',
message: 'Are you sure you want to delete this task?',
actions: [
{
@@ -187,7 +187,7 @@
>
- {{ call.type == 'Incoming' ? 'Inbound' : 'Outbound' }} call
+ {{ call.type == 'Incoming' ? 'Inbound' : 'Outbound' }} Call
{{
- call.show_recording ? 'Hide recording' : 'Listen to call'
+ call.show_recording ? 'Hide Recording' : 'Listen to Call'
}}
@@ -226,7 +226,7 @@
class="audio-control"
controls
:src="call.recording_url"
- >
+ />
@@ -336,7 +336,7 @@
>
- {{ activity.type == 'Incoming' ? 'Inbound' : 'Outbound' }} call
+ {{ activity.type == 'Incoming' ? 'Inbound' : 'Outbound' }} Call
{{
- activity.show_recording ? 'Hide recording' : 'Listen to call'
+ activity.show_recording ? 'Hide Recording' : 'Listen to Call'
}}
@@ -534,7 +534,7 @@
@@ -825,13 +825,13 @@ function update_activities_details(activity) {
}
const emptyText = computed(() => {
- let text = 'No email communications'
+ let text = 'No Email Communications'
if (props.title == 'Calls') {
- text = 'No call logs'
+ text = 'No Call Logs'
} else if (props.title == 'Notes') {
- text = 'No notes'
+ text = 'No Notes'
} else if (props.title == 'Tasks') {
- text = 'No tasks'
+ text = 'No Tasks'
}
return text
})
diff --git a/frontend/src/components/Controls/Link.vue b/frontend/src/components/Controls/Link.vue
index 1cb2e40e..971abc41 100644
--- a/frontend/src/components/Controls/Link.vue
+++ b/frontend/src/components/Controls/Link.vue
@@ -29,7 +29,7 @@
diff --git a/frontend/src/components/Modals/ContactModal.vue b/frontend/src/components/Modals/ContactModal.vue
index 489a436b..ffc46972 100644
--- a/frontend/src/components/Modals/ContactModal.vue
+++ b/frontend/src/components/Modals/ContactModal.vue
@@ -95,7 +95,7 @@
diff --git a/frontend/src/components/Modals/OrganizationModal.vue b/frontend/src/components/Modals/OrganizationModal.vue
index 6319bad5..9da6fd3c 100644
--- a/frontend/src/components/Modals/OrganizationModal.vue
+++ b/frontend/src/components/Modals/OrganizationModal.vue
@@ -41,10 +41,10 @@
type="text"
ref="title"
size="md"
- label="Organization name"
+ label="Organization Name"
variant="outline"
v-model="_organization.organization_name"
- placeholder="Add organization name"
+ placeholder="Add Organization Name"
/>
@@ -81,7 +81,7 @@
'10001+',
]"
size="md"
- label="No. of employees"
+ label="No. of Employees"
variant="outline"
v-model="_organization.no_of_employees"
/>
@@ -92,7 +92,7 @@
variant="outline"
v-model="_organization.industry"
doctype="CRM Industry"
- placeholder="Add industry"
+ placeholder="Add Industry"
/>
@@ -224,7 +224,7 @@ function handleOrganizationUpdate(doc) {
const dialogOptions = computed(() => {
let title = !editMode.value
- ? 'New organization'
+ ? 'New Organization'
: _organization.value.organization_name
let size = detailMode.value ? '' : 'xl'
let actions = detailMode.value
diff --git a/frontend/src/components/Modals/TaskModal.vue b/frontend/src/components/Modals/TaskModal.vue
index 5dae4d89..3c4a59a7 100644
--- a/frontend/src/components/Modals/TaskModal.vue
+++ b/frontend/src/components/Modals/TaskModal.vue
@@ -21,7 +21,7 @@
ref="title"
variant="outline"
v-model="_task.title"
- placeholder="Add title"
+ placeholder="Add Title"
/>
@@ -33,7 +33,7 @@
:bubbleMenu="true"
:content="_task.description"
@change="(val) => (_task.description = val)"
- placeholder="Type a description"
+ placeholder="Type a Description"
/>
@@ -60,7 +60,7 @@
diff --git a/frontend/src/components/NewDeal.vue b/frontend/src/components/NewDeal.vue
index cfdb183e..b31baaf8 100644
--- a/frontend/src/components/NewDeal.vue
+++ b/frontend/src/components/NewDeal.vue
@@ -144,7 +144,7 @@ const allFields = [
type: 'data',
},
{
- label: 'Mobile no',
+ label: 'Mobile No',
name: 'mobile_no',
type: 'data',
},
@@ -173,10 +173,10 @@ const allFields = [
options: statusDropdownOptions(props.newDeal, 'deal'),
},
{
- label: 'Deal owner',
+ label: 'Deal Owner',
name: 'lead_owner',
type: 'link',
- placeholder: 'Deal owner',
+ placeholder: 'Deal Owner',
},
],
},
diff --git a/frontend/src/components/NewLead.vue b/frontend/src/components/NewLead.vue
index 3585b443..225e1736 100644
--- a/frontend/src/components/NewLead.vue
+++ b/frontend/src/components/NewLead.vue
@@ -144,7 +144,7 @@ const allFields = [
type: 'data',
},
{
- label: 'Mobile no',
+ label: 'Mobile No',
name: 'mobile_no',
type: 'data',
},
@@ -173,10 +173,10 @@ const allFields = [
options: statusDropdownOptions(props.newLead),
},
{
- label: 'Lead owner',
+ label: 'Lead Owner',
name: 'lead_owner',
type: 'user',
- placeholder: 'Lead owner',
+ placeholder: 'Lead Owner',
},
],
},
diff --git a/frontend/src/components/SortBy.vue b/frontend/src/components/SortBy.vue
index 731dc49c..cf44b430 100644
--- a/frontend/src/components/SortBy.vue
+++ b/frontend/src/components/SortBy.vue
@@ -66,7 +66,7 @@
class="!text-gray-600"
variant="ghost"
@click="togglePopover()"
- label="Add sort"
+ label="Add Sort"
>
@@ -78,7 +78,7 @@
v-if="sortValues.length"
class="!text-gray-600"
variant="ghost"
- label="Clear sort"
+ label="Clear Sort"
@click="clearSort(close)"
/>
diff --git a/frontend/src/pages/Deal.vue b/frontend/src/pages/Deal.vue
index a62c99cc..4a7045ae 100644
--- a/frontend/src/pages/Deal.vue
+++ b/frontend/src/pages/Deal.vue
@@ -50,7 +50,7 @@
- About this deal
+ About this Deal
-
+
@@ -50,7 +50,7 @@
- About this lead
+ About this Lead
updateField('image', file.file_url)"