From efa2b2c8e578a41e6831c324fe58957230aa6bb4 Mon Sep 17 00:00:00 2001 From: Shu Muto Date: Wed, 27 Dec 2017 16:57:19 +0900 Subject: [PATCH] Add project_id for image This patch adds project_id for image into index view. Change-Id: I3ed29aa252c839b058c2f1f4db1e213f5155f031 --- zun_ui/static/dashboard/container/images/drawer.html | 2 +- .../dashboard/container/images/images.module.js | 12 +++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/zun_ui/static/dashboard/container/images/drawer.html b/zun_ui/static/dashboard/container/images/drawer.html index 812e6d9..e393469 100644 --- a/zun_ui/static/dashboard/container/images/drawer.html +++ b/zun_ui/static/dashboard/container/images/drawer.html @@ -1,5 +1,5 @@ + property-groups="[['id', 'image_id', 'project_id']]"> diff --git a/zun_ui/static/dashboard/container/images/images.module.js b/zun_ui/static/dashboard/container/images/images.module.js index 73fa7d1..fed0034 100644 --- a/zun_ui/static/dashboard/container/images/images.module.js +++ b/zun_ui/static/dashboard/container/images/images.module.js @@ -83,6 +83,10 @@ .append({ id: 'image_id', priority: 3 + }) + .append({ + id: 'project_id', + priority: 2 }); // for magic-search registry.getResourceType(resourceType).filterFacets @@ -105,6 +109,11 @@ 'label': gettext('Image ID'), 'name': 'image_id', 'singleton': true + }) + .append({ + 'label': gettext('Project ID'), + 'name': 'project_id', + 'singleton': true }); } @@ -114,7 +123,8 @@ 'repo': { label: gettext('Image'), filters: ['noValue'] }, 'tag': { label: gettext('Tag'), filters: ['noValue'] }, 'size': { label: gettext('Size'), filters: ['noValue', 'bytes'] }, - 'image_id': { label: gettext('Image ID'), filters: ['noValue'] } + 'image_id': { label: gettext('Image ID'), filters: ['noValue'] }, + 'project_id': { label: gettext('Project ID'), filters: ['noValue'] } }; }