ui: add namespace fields to sync
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com> Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
committed by
Thomas Lamprecht
parent
c06c1b4bd7
commit
d895b26bb9
@ -1,8 +1,9 @@
|
||||
Ext.define('pbs-sync-jobs-status', {
|
||||
extend: 'Ext.data.Model',
|
||||
fields: [
|
||||
'id', 'owner', 'remote', 'remote-store', 'store', 'schedule', 'group-filter',
|
||||
'next-run', 'last-run-upid', 'last-run-state', 'last-run-endtime',
|
||||
'id', 'owner', 'remote', 'remote-store', 'remote-ns', 'store', 'ns',
|
||||
'schedule', 'group-filter', 'next-run', 'last-run-upid', 'last-run-state',
|
||||
'last-run-endtime',
|
||||
{
|
||||
name: 'duration',
|
||||
calculate: function(data) {
|
||||
@ -195,6 +196,13 @@ Ext.define('PBS.config.SyncJobView', {
|
||||
width: 120,
|
||||
sortable: true,
|
||||
},
|
||||
{
|
||||
header: gettext('Namespace'),
|
||||
dataIndex: 'ns',
|
||||
width: 120,
|
||||
sortable: true,
|
||||
renderer: PBS.Utils.render_optional_namespace,
|
||||
},
|
||||
{
|
||||
header: gettext('Remote ID'),
|
||||
dataIndex: 'remote',
|
||||
@ -207,6 +215,19 @@ Ext.define('PBS.config.SyncJobView', {
|
||||
width: 120,
|
||||
sortable: true,
|
||||
},
|
||||
{
|
||||
header: gettext('Remote Namespace'),
|
||||
dataIndex: 'remote-ns',
|
||||
width: 120,
|
||||
sortable: true,
|
||||
renderer: PBS.Utils.render_optional_namespace,
|
||||
},
|
||||
{
|
||||
header: gettext('Max. Recursion'),
|
||||
dataIndex: 'max-depth',
|
||||
width: 10,
|
||||
sortable: true,
|
||||
},
|
||||
{
|
||||
header: gettext('Owner'),
|
||||
dataIndex: 'owner',
|
||||
|
Reference in New Issue
Block a user