diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2021-03-29 14:49:27 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2021-05-20 18:44:23 +0200 |
commit | 7f0d1ab287285e3903ff5507d68565aa393de3a0 (patch) | |
tree | d2429343e7c4faf57eecd8656e30d48a567d00d5 /ogcp/templates/dashboard.html | |
parent | 411189e6ecb41b209b48993090bc5b8c8a14aa3b (diff) |
Add latest images to the dashboard
Users want to know latest created/modified images to manage new images
or changes made on existing images.
This commit adds a list with the 10 latest created or modified images.
Diffstat (limited to 'ogcp/templates/dashboard.html')
-rw-r--r-- | ogcp/templates/dashboard.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ogcp/templates/dashboard.html b/ogcp/templates/dashboard.html index 9c34768..518ae20 100644 --- a/ogcp/templates/dashboard.html +++ b/ogcp/templates/dashboard.html @@ -18,5 +18,20 @@ <p class="card-text">{{ images | length }}</p> </div> </div> + <div class="m-4 w-25 card text-center"> + <div class="card-header"> + Latest images + </div> + {% for image in images[:10] %} + <ul class="list-group list-group-horizontal"> + <li class="list-group-item w-50"> + {{ image['name'] }} + </li> + <li class="list-group-item w-50"> + {{ image['modified'] }} + </li> + </ul> + {% endfor %} + </div> </div> {% endblock %} |