Skip to content

Commit 3dda9fb

Browse files
author
Matthew Fisher
committed
fix(controller): fix container admin view
A container does not have a cluster attribute, but an app does! fixes #743
1 parent dfd202b commit 3dda9fb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

controller/api/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class ContainerAdmin(admin.ModelAdmin):
6363
in the Django admin.
6464
"""
6565
date_hierarchy = 'created'
66-
list_display = ('short_name', 'owner', 'cluster', 'app', 'state')
66+
list_display = ('short_name', 'owner', 'app', 'state')
6767
list_filter = ('owner', 'cluster', 'app', 'state')
6868
admin.site.register(Container, ContainerAdmin)
6969

0 commit comments

Comments
 (0)