mirror of
https://github.com/ansible/awx.git
synced 2026-01-18 05:01:19 -03:30
removed indexes from forms that included lists
This commit is contained in:
parent
c12006753e
commit
d84626063f
@ -68,6 +68,7 @@ angular.module('OrganizationFormDefinition', [])
|
||||
type: 'collection',
|
||||
title: 'Users',
|
||||
iterator: 'user',
|
||||
index: false,
|
||||
open: false,
|
||||
|
||||
actions: {
|
||||
@ -114,6 +115,7 @@ angular.module('OrganizationFormDefinition', [])
|
||||
type: 'collection',
|
||||
title: 'Administrators',
|
||||
iterator: 'admin', // Singular form of name (e.g. thing)
|
||||
index: false,
|
||||
open: false, // Open accordion on load?
|
||||
base: '/users',
|
||||
actions: { // Actions displayed top right of list
|
||||
|
||||
@ -257,6 +257,7 @@ angular.module('ProjectFormDefinition', ['SchedulesListDefinition'])
|
||||
type: 'collection',
|
||||
title: 'Organizations',
|
||||
iterator: 'organization',
|
||||
index: false,
|
||||
open: false,
|
||||
|
||||
actions: {
|
||||
@ -297,7 +298,8 @@ angular.module('ProjectFormDefinition', ['SchedulesListDefinition'])
|
||||
},
|
||||
|
||||
schedules: {
|
||||
include: "SchedulesList"
|
||||
include: "SchedulesList",
|
||||
index: false
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
@ -80,6 +80,7 @@ angular.module('TeamFormDefinition', [])
|
||||
title: 'Credentials',
|
||||
iterator: 'credential',
|
||||
open: false,
|
||||
index: false,
|
||||
|
||||
actions: {
|
||||
add: {
|
||||
@ -123,6 +124,7 @@ angular.module('TeamFormDefinition', [])
|
||||
title: 'Permissions',
|
||||
iterator: 'permission',
|
||||
open: false,
|
||||
index: false,
|
||||
|
||||
actions: {
|
||||
add: {
|
||||
@ -183,6 +185,7 @@ angular.module('TeamFormDefinition', [])
|
||||
title: 'Projects',
|
||||
iterator: 'project',
|
||||
open: false,
|
||||
index: false,
|
||||
|
||||
actions: {
|
||||
add: {
|
||||
@ -225,6 +228,7 @@ angular.module('TeamFormDefinition', [])
|
||||
title: 'Users',
|
||||
iterator: 'user',
|
||||
open: false,
|
||||
index: false,
|
||||
|
||||
actions: {
|
||||
add: {
|
||||
|
||||
@ -132,6 +132,7 @@ angular.module('UserFormDefinition', [])
|
||||
title: 'Credentials',
|
||||
iterator: 'credential',
|
||||
open: false,
|
||||
index: false,
|
||||
|
||||
actions: {
|
||||
add: {
|
||||
@ -175,6 +176,7 @@ angular.module('UserFormDefinition', [])
|
||||
title: 'Permissions',
|
||||
iterator: 'permission',
|
||||
open: false,
|
||||
index: false,
|
||||
|
||||
actions: {
|
||||
add: {
|
||||
@ -236,6 +238,7 @@ angular.module('UserFormDefinition', [])
|
||||
title: 'Admin of Organizations',
|
||||
iterator: 'adminof', // Singular form of name (e.g. thing)
|
||||
open: false, // Open accordion on load?
|
||||
index: false,
|
||||
base: '/organizations',
|
||||
|
||||
actions: {},
|
||||
@ -255,6 +258,7 @@ angular.module('UserFormDefinition', [])
|
||||
type: 'collection',
|
||||
title: 'Organizations',
|
||||
iterator: 'organization',
|
||||
index: false,
|
||||
open: false,
|
||||
|
||||
actions: {},
|
||||
@ -275,6 +279,7 @@ angular.module('UserFormDefinition', [])
|
||||
title: 'Teams',
|
||||
iterator: 'team',
|
||||
open: false,
|
||||
index: false,
|
||||
|
||||
actions: {},
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user