aboutsummaryrefslogtreecommitdiff
path: root/web/app/view
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2016-10-20 15:38:20 +0500
committerAbyss777 <abyss@fox5.ru>2016-10-20 15:38:20 +0500
commit1613d72c0a33dd27c3201fc1307aa2743d92cd7a (patch)
tree14a4143b70d22ddac65c917dfae0a8394d52f7ab /web/app/view
parent524c64e5bac499a27b2ae9551e579f22b5dadb53 (diff)
downloadetbsa-traccar-web-1613d72c0a33dd27c3201fc1307aa2743d92cd7a.tar.gz
etbsa-traccar-web-1613d72c0a33dd27c3201fc1307aa2743d92cd7a.tar.bz2
etbsa-traccar-web-1613d72c0a33dd27c3201fc1307aa2743d92cd7a.zip
Edit and show device management info
Diffstat (limited to 'web/app/view')
-rw-r--r--web/app/view/DeviceDialog.js12
-rw-r--r--web/app/view/Devices.js15
2 files changed, 27 insertions, 0 deletions
diff --git a/web/app/view/DeviceDialog.js b/web/app/view/DeviceDialog.js
index 69f1ceb..ab602b8 100644
--- a/web/app/view/DeviceDialog.js
+++ b/web/app/view/DeviceDialog.js
@@ -45,6 +45,18 @@ Ext.define('Traccar.view.DeviceDialog', {
queryMode: 'local',
displayField: 'name',
valueField: 'id'
+ }, {
+ xtype: 'textfield',
+ name: 'phone',
+ fieldLabel: Strings.devicePhone
+ }, {
+ xtype: 'textfield',
+ name: 'model',
+ fieldLabel: Strings.deviceModel
+ }, {
+ xtype: 'textfield',
+ name: 'contact',
+ fieldLabel: Strings.deviceContact
}]
}
});
diff --git a/web/app/view/Devices.js b/web/app/view/Devices.js
index 02f92ea..2203052 100644
--- a/web/app/view/Devices.js
+++ b/web/app/view/Devices.js
@@ -156,6 +156,21 @@ Ext.define('Traccar.view.Devices', {
hidden: true,
flex: 1
}, {
+ text: Strings.devicePhone,
+ dataIndex: 'phone',
+ hidden: true,
+ flex: 1
+ }, {
+ text: Strings.deviceModel,
+ dataIndex: 'model',
+ hidden: true,
+ flex: 1
+ }, {
+ text: Strings.deviceContact,
+ dataIndex: 'contact',
+ hidden: true,
+ flex: 1
+ }, {
text: Strings.deviceLastUpdate,
dataIndex: 'lastUpdate',
flex: 1,