diff options
author | Javier Hernandez <jhernandez@soleta.eu> | 2023-12-12 11:28:44 +0100 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2023-12-12 11:42:43 +0100 |
commit | 0f5ba31c09067b7ee10fc376b8f899f9086050c7 (patch) | |
tree | d8442b5b1c461f7fb9fe04defc7e5c403763dc13 /ogcp/views.py | |
parent | 84bcdb3cae1ea13cc20bbf88dd9670733f44c02d (diff) |
views: Add 'description' field to image details
Add a 'description' field to the image-details form.
Diffstat (limited to 'ogcp/views.py')
-rw-r--r-- | ogcp/views.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ogcp/views.py b/ogcp/views.py index 2828d4a..f64d33c 100644 --- a/ogcp/views.py +++ b/ogcp/views.py @@ -1928,6 +1928,7 @@ def action_image_info(): form.modified.data = image['modified'] form.permissions.data = image['permissions'] form.software_id.data = image['software_id'] + form.description.data = image['description'] responses = multi_request('get', '/images') |