diff --git a/ogcp/templates/actions/cache.html b/ogcp/templates/actions/cache.html
index f9aaf68..46a8699 100644
--- a/ogcp/templates/actions/cache.html
+++ b/ogcp/templates/actions/cache.html
@@ -39,6 +39,7 @@
{{ image.image_name() }}
{{ image.clients() }}
{{ image.image_name.data }} ({{ (images_data[image.selected.label.text]['size'] | int / 2**20)|round(3) }} MiB)
+
∘︎ Checksum: {{images_data[image.selected.label.text]['checksum']}}
{% for ip in images_data[image.selected.label.text]['clients'] %}
diff --git a/ogcp/views.py b/ogcp/views.py
index c1da3f0..8ece7db 100644
--- a/ogcp/views.py
+++ b/ogcp/views.py
@@ -1211,6 +1211,7 @@ def action_client_cache():
'clients': [ip],
'size': int(image_info['size']),
'name': image_name,
+ 'checksum': checksum
}
storage_data[ip] = {'used': used_cache,
|