ogcp: show checksum in image info

Improve potential image troubleshooting within ogCP.
Add checksum to the image info view.

Show "Unknown" when no checksum is available.
master
Alejandro Sirgo Rica 2024-07-11 12:39:49 +02:00
parent b5cb42006e
commit 1548b6338a
2 changed files with 7 additions and 0 deletions

View File

@ -234,6 +234,7 @@ class ImageDetailsForm(FlaskForm):
modified = StringField(label=_l('Last update'))
permissions = StringField(label=_l('Permissions'))
software_id = StringField(label=_l('Software id'))
checksum = StringField(label=_l('Checksum'))
class ServerForm(FlaskForm):
name = StringField(label=_l('Name'),

View File

@ -3400,6 +3400,12 @@ def action_image_info():
form.software_id.data = image['software_id']
form.description.data = image['description']
checksum = image.get('checksum', _('Unknown'))
if not checksum:
checksum = _('Unknown')
form.checksum.data = checksum
try:
responses = get_images_grouped_by_repos()
except ServerError: