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