removed indexes from forms that included lists

This commit is contained in:
John Mitchell 2015-01-09 15:11:26 -05:00
parent c12006753e
commit d84626063f
4 changed files with 14 additions and 1 deletions

View File

@ -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

View File

@ -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
}
},

View File

@ -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: {

View File

@ -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: {},