Skip to content

Commit

Permalink
Update the Container Image Tags page view (SatelliteQE#999)
Browse files Browse the repository at this point in the history
  • Loading branch information
vsedmik authored Oct 20, 2023
1 parent b626540 commit 8c1e7eb
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions airgun/views/containerimagetag.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,31 @@ def is_displayed(self):
@View.nested
class details(SatTab):
product = ReadOnlyEntry(name='Product')
repository = ReadOnlyEntry(name='Repository')
schema = ReadOnlyEntry(name='Schema Version')
manifest_type = ReadOnlyEntry(name='Manifest Type')
digest = ReadOnlyEntry(name='Digest')

@View.nested
class lce(SatTab):
TAB_NAME = 'Lifecycle Environments'
table = SatTable(
'.//table',
column_widgets={'Environment': Text('./a'), 'Content View Version': Text('./a')},
column_widgets={
'Environment': Text('./a'),
'Content View Version': Text('./a'),
'Published At': Text('./a'),
},
)

@View.nested
class repos(SatTab):
TAB_NAME = 'Repositories'
table = SatTable(
'.//table',
column_widgets={
'Name': Text('./a'),
'Product': Text('./a'),
'Content View': Text('./a'),
'Last Sync': Text('./a'),
},
)

0 comments on commit 8c1e7eb

Please sign in to comment.