ui: add/fix help buttons
added a few more help buttons were appropriate: * GC and Prune schedule windows * Create Directory window * API Tokens, link directly to token section * verify jobs window Signed-off-by: Aaron Lauterer <a.lauterer@proxmox.com>
This commit is contained in:
parent
c8219747f0
commit
133de2dd1f
|
@ -70,6 +70,7 @@ Ext.define('PBS.DataStorePruneAndGC', {
|
||||||
editor: {
|
editor: {
|
||||||
xtype: 'proxmoxWindowEdit',
|
xtype: 'proxmoxWindowEdit',
|
||||||
title: gettext('GC Schedule'),
|
title: gettext('GC Schedule'),
|
||||||
|
onlineHelp: 'maintenance_gc',
|
||||||
items: {
|
items: {
|
||||||
xtype: 'pbsCalendarEvent',
|
xtype: 'pbsCalendarEvent',
|
||||||
name: 'gc-schedule',
|
name: 'gc-schedule',
|
||||||
|
@ -86,6 +87,7 @@ Ext.define('PBS.DataStorePruneAndGC', {
|
||||||
editor: {
|
editor: {
|
||||||
xtype: 'proxmoxWindowEdit',
|
xtype: 'proxmoxWindowEdit',
|
||||||
title: gettext('Prune Schedule'),
|
title: gettext('Prune Schedule'),
|
||||||
|
onlineHelp: 'maintenance_pruning',
|
||||||
items: {
|
items: {
|
||||||
xtype: 'pbsCalendarEvent',
|
xtype: 'pbsCalendarEvent',
|
||||||
name: 'prune-schedule',
|
name: 'prune-schedule',
|
||||||
|
|
|
@ -8,6 +8,8 @@ Ext.define('PBS.window.CreateDirectory', {
|
||||||
url: '/nodes/localhost/disks/directory',
|
url: '/nodes/localhost/disks/directory',
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
|
|
||||||
|
onlineHelp: 'storage-disk-management',
|
||||||
|
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
xtype: 'pmxDiskSelector',
|
xtype: 'pmxDiskSelector',
|
||||||
|
|
|
@ -3,7 +3,7 @@ Ext.define('PBS.window.TokenEdit', {
|
||||||
alias: 'widget.pbsTokenEdit',
|
alias: 'widget.pbsTokenEdit',
|
||||||
mixins: ['Proxmox.Mixin.CBind'],
|
mixins: ['Proxmox.Mixin.CBind'],
|
||||||
|
|
||||||
onlineHelp: 'user_mgmt',
|
onlineHelp: 'user_tokens',
|
||||||
|
|
||||||
user: undefined,
|
user: undefined,
|
||||||
tokenname: undefined,
|
tokenname: undefined,
|
||||||
|
|
|
@ -5,7 +5,7 @@ Ext.define('PBS.window.VerifyJobEdit', {
|
||||||
|
|
||||||
userid: undefined,
|
userid: undefined,
|
||||||
|
|
||||||
onlineHelp: 'verifyjobs',
|
onlineHelp: 'maintenance-verification',
|
||||||
|
|
||||||
isAdd: true,
|
isAdd: true,
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue