diff options
author | Javier Hernandez <jhernandez@soleta.eu> | 2024-01-30 11:20:56 +0100 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-01-30 11:29:57 +0100 |
commit | 556e06cc3d159c9b1b207a55d3f35f7d0ba048c6 (patch) | |
tree | 763a52e6f49bc9cfc4e0ca4e6778c19c57aa64fe /ogcp/templates/images.html | |
parent | 5892d5c8c37ff412863afe2c9c6985f32276caf2 (diff) |
Add list images action
Add list images action that shows a list of all the images in each
server and their properties
Diffstat (limited to 'ogcp/templates/images.html')
-rw-r--r-- | ogcp/templates/images.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ogcp/templates/images.html b/ogcp/templates/images.html index 2a50d39..c0b4359 100644 --- a/ogcp/templates/images.html +++ b/ogcp/templates/images.html @@ -60,6 +60,8 @@ {% block commands %} <input class="btn btn-light" type="submit" value="{{ _('Image details') }}" form="imagesForm" formaction="{{ url_for('action_image_info') }}" formmethod="get"> + <input class="btn btn-light" type="submit" value="{{ _('List images') }}" + form="imagesForm" formaction="{{ url_for('action_image_list') }}" formmethod="get"> <input class="btn btn-light" type="submit" value="{{ _('Delete image') }}" form="imagesForm" formaction="{{ url_for('action_image_delete') }}" formmethod="get"> {% if btn_back %} |