diff options
author | Abyss777 <abyss@fox5.ru> | 2017-02-20 14:03:47 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-02-27 10:51:28 +0500 |
commit | 274b412718b81deba404a1d10ae83d5d3c82238a (patch) | |
tree | 729c61be0b309cb8e0d0d12e8dbe65df535ad00a /web/app/view | |
parent | 66171b939e4d20ecae0014bb61862e1880e9c6c5 (diff) | |
download | trackermap-web-274b412718b81deba404a1d10ae83d5d3c82238a.tar.gz trackermap-web-274b412718b81deba404a1d10ae83d5d3c82238a.tar.bz2 trackermap-web-274b412718b81deba404a1d10ae83d5d3c82238a.zip |
Add SMS to notifications and phone to user
Diffstat (limited to 'web/app/view')
-rw-r--r-- | web/app/view/DeviceDialog.js | 2 | ||||
-rw-r--r-- | web/app/view/Notifications.js | 7 | ||||
-rw-r--r-- | web/app/view/UserDialog.js | 4 |
3 files changed, 12 insertions, 1 deletions
diff --git a/web/app/view/DeviceDialog.js b/web/app/view/DeviceDialog.js index 960b3f9b..57820695 100644 --- a/web/app/view/DeviceDialog.js +++ b/web/app/view/DeviceDialog.js @@ -43,7 +43,7 @@ Ext.define('Traccar.view.DeviceDialog', { }, { xtype: 'textfield', name: 'phone', - fieldLabel: Strings.devicePhone + fieldLabel: Strings.sharedPhone }, { xtype: 'textfield', name: 'model', diff --git a/web/app/view/Notifications.js b/web/app/view/Notifications.js index 8f6ca484..0f6552a7 100644 --- a/web/app/view/Notifications.js +++ b/web/app/view/Notifications.js @@ -59,6 +59,13 @@ Ext.define('Traccar.view.Notifications', { listeners: { checkChange: 'onCheckChange' } + }, { + text: Strings.notificationSms, + dataIndex: 'sms', + xtype: 'checkcolumn', + listeners: { + checkChange: 'onCheckChange' + } }] } }); diff --git a/web/app/view/UserDialog.js b/web/app/view/UserDialog.js index 34c3b4a1..84103ee2 100644 --- a/web/app/view/UserDialog.js +++ b/web/app/view/UserDialog.js @@ -43,6 +43,10 @@ Ext.define('Traccar.view.UserDialog', { inputType: 'password', allowBlank: false }, { + xtype: 'textfield', + name: 'phone', + fieldLabel: Strings.sharedPhone + }, { xtype: 'checkboxfield', inputValue: true, uncheckedValue: false, |