diff --git a/awx/ui/static/js/controllers/Projects.js b/awx/ui/static/js/controllers/Projects.js index 55f58e2501..1563213718 100644 --- a/awx/ui/static/js/controllers/Projects.js +++ b/awx/ui/static/js/controllers/Projects.js @@ -35,10 +35,14 @@ function ProjectsList ($scope, $rootScope, $location, $log, $routeParams, Rest, scope.projectsPostRefresh = scope.$on('PostRefresh', function() { if (scope.projects) { for (var i=0; i < scope.projects.length; i++) { + if (scope.projects[i].status == 'ok') { + scope.projects[i].status = 'n/a'; + } switch(scope.projects[i].status) { case 'updating': case 'successful': case 'ok': + case 'n/a': scope.projects[i].badge = 'false'; break; case 'never updated': diff --git a/awx/ui/static/js/lists/Credentials.js b/awx/ui/static/js/lists/Credentials.js index 7cb6558bd0..ee78f72ba0 100644 --- a/awx/ui/static/js/lists/Credentials.js +++ b/awx/ui/static/js/lists/Credentials.js @@ -26,7 +26,8 @@ angular.module('CredentialsListDefinition', []) label: 'Name' }, description: { - label: 'Description' + label: 'Description', + excludeModal: true }, team: { label: 'Team', diff --git a/awx/ui/static/js/lists/Projects.js b/awx/ui/static/js/lists/Projects.js index d6629ebfac..ca634abdb0 100644 --- a/awx/ui/static/js/lists/Projects.js +++ b/awx/ui/static/js/lists/Projects.js @@ -29,14 +29,19 @@ angular.module('ProjectsListDefinition', []) badgeTipPlacement: 'bottom' }, description: { - label: 'Description' + label: 'Description', + columnClass: 'hidden-sm hidden-xs', + excludeModal: true }, last_updated: { label: 'Last Updated', type: 'date' }, status: { - label: 'Status' + label: 'Update Status', + ngClick: 'showSCMStatus(\{\{ project.id \}\})', + awToolTip: 'View details of last SCM Update', + dataPlacement: 'bottom' } }, @@ -63,7 +68,7 @@ angular.module('ProjectsListDefinition', []) "