From e8f25a7072feea346f264b5531bddef7ed10af8d Mon Sep 17 00:00:00 2001 From: rolux Date: Thu, 5 Feb 2015 10:18:45 +0530 Subject: [PATCH] fix #2654 (add 'id' field to document) --- static/js/documentsPanel.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/static/js/documentsPanel.js b/static/js/documentsPanel.js index 5f5581d4..f02b21b8 100644 --- a/static/js/documentsPanel.js +++ b/static/js/documentsPanel.js @@ -607,6 +607,14 @@ pandora.ui.documentsPanel = function(options) { value: item.name, width: width }), + Ox.Input({ + disabled: true, + id: 'id', + label: Ox._('ID'), + labelWidth: labelWidth, + value: item.id, + width: width + }), Ox.Input({ disabled: true, id: 'extension', @@ -644,7 +652,7 @@ pandora.ui.documentsPanel = function(options) { Ox.Input({ disabled: true, id: 'username', - label: Ox._('Username'), + label: Ox._('User'), labelWidth: labelWidth, value: item.user, width: width