From 3d7385bd1878bde222248ca69ad6b6eb9ad3c699 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Mon, 2 Dec 2013 16:48:02 -0500 Subject: [PATCH] Pluralize teams... fixes AC-738 --- awx/api/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/api/views.py b/awx/api/views.py index 69f83c5f55..33eb1c0f33 100644 --- a/awx/api/views.py +++ b/awx/api/views.py @@ -224,7 +224,7 @@ class DashboardView(APIView): 'total': user_list.count()} data['organizations'] = {'url': reverse('api:organization_list'), 'total': organization_list.count()} - data['team'] = {'url': reverse('api:team_list'), + data['teams'] = {'url': reverse('api:team_list'), 'total': team_list.count()} data['credentials'] = {'url': reverse('api:credential_list'), 'total': credential_list.count()}