aboutsummaryrefslogtreecommitdiff
path: root/radicale_infcloud/web/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'radicale_infcloud/web/config.js')
-rw-r--r--radicale_infcloud/web/config.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/radicale_infcloud/web/config.js b/radicale_infcloud/web/config.js
index 096adbe..179d882 100644
--- a/radicale_infcloud/web/config.js
+++ b/radicale_infcloud/web/config.js
@@ -1447,7 +1447,13 @@ var globalGroupContactsByCompanies=false;
// ];
//
// NOTE: if left undefined, the recommended settings will be used.
-
+var globalCollectionDisplay = [
+ { label: '{Name}', value: ['{LastName}, ','{FirstName}'] },
+ { label: '{Email}', value: ['{Email[:0]}'] },
+ { label: '{Email} 2', value: ['{Email[:1]}'] },
+ { label: '{Phone} 1', value: ['{Phone[:0]}'] },
+ { label: 'GV', value: ['{Phone[type=googlevoice]}'] }
+];
// globalCollectionSort
// This options sets the ordering of contacts in the interface. In general
bgstack15